DEV Community

Vikas Chandel
Vikas Chandel

Posted on

Oauth 1.0 access token issue

I was trying to get access token with oauth 1.0 but getting Invalid signature for signature method HMAC-SHA1. I have the request token and verifier.

Api i want to integrate:
https://api.immobilienscout24.de/api-docs/authentication/three-legged/

$consumerKey = "myrealapiKey";
$consumerSecret = "wEBxKUuQWYqRQ0Kb";

Top comments (1)

Collapse
 
andrzejfink profile image
Andyyy

Even if the entry is already old...

The error indicates an incorrect signature for IS24. Have you encoded the token secret in the database URL? Otherwise it won't work without it. You can do it here: urldecoder.org. Your token would be encoded and the signature will be correctly recognized..