auth_token Node.js Instagram

1

To make a script work I need auth_token of an instagram application, and that according to instructions I should (and am) doing so:

https://instagram.com/oauth/authorize/?client_id=1627c123e3fc481791e0d6be16ff57a0&redirect_uri=http://yourcallback.com/auth/instagram/callback&response_type=token&display=touch&scope=likes+relationships

But I still get the errors:

  

Instagram {
      "code": 400, "error_type": "OAuthException", "error_message":
   "Redirect URI does not match registered redirect URI"
  }

Does anyone know the problem?

    
asked by anonymous 06.09.2015 / 06:25

1 answer

1

From the tests I've done with the API, you need to have a url to put in redirect_uri . The url you are using should not be accepted by the API.

When you registered your application must have inserted a url, this same URL should be used.

The error that the API returned to you says just that.

    
15.05.2016 / 06:25