Live data from Hacker News

Ask HN: Does anyone else have problems with Instagram API OAuth2?

news.ycombinator.com

31–40 of 82 posts

Re: Ask HN: Does anyone else have problems with Instagram API OAuth2?

#32

To temporary fix the issue, you could do the following: change response_type=code to response_type=token. Instagram will redirect back to your site with something like /callback#access_token=123456. From here, send the user to a very simple page with the following snippet: if (window.location.hash && window.location.hash.indexOf('#access_token=') !== -1) { var accessToken = window.location.hash.replace('#access_token…

but this is better than nothing, thank you!

Re: Ask HN: Does anyone else have problems with Instagram API OAuth2?

#33

To temporary fix the issue, you could do the following: change response_type=code to response_type=token. Instagram will redirect back to your site with something like /callback#access_token=123456. From here, send the user to a very simple page with the following snippet: if (window.location.hash && window.location.hash.indexOf('#access_token=') !== -1) { var accessToken = window.location.hash.replace('#access_token…

This solution is insecure. Any person can intercept token and make harm to your application.

I completely agree. Hence I said it's temporary. When you have a huge influx of paying customers who cannot log in to do their work, you have to balance that a bit.

Re: Ask HN: Does anyone else have problems with Instagram API OAuth2?

#34

To temporary fix the issue, you could do the following: change response_type=code to response_type=token. Instagram will redirect back to your site with something like /callback#access_token=123456. From here, send the user to a very simple page with the following snippet: if (window.location.hash && window.location.hash.indexOf('#access_token=') !== -1) { var accessToken = window.location.hash.replace('#access_token…

Where would I change response_type=code to response_type=token?

Re: Ask HN: Does anyone else have problems with Instagram API OAuth2?

#35

To temporary fix the issue, you could do the following: change response_type=code to response_type=token. Instagram will redirect back to your site with something like /callback#access_token=123456. From here, send the user to a very simple page with the following snippet: if (window.location.hash && window.location.hash.indexOf('#access_token=') !== -1) { var accessToken = window.location.hash.replace('#access_token…

but this is better than nothing, thank you!

How did you go about this solution?

Re: Ask HN: Does anyone else have problems with Instagram API OAuth2?

#36
post #34

To temporary fix the issue, you could do the following: change response_type=code to response_type=token. Instagram will redirect back to your site with something like /callback#access_token=123456. From here, send the user to a very simple page with the following snippet: if (window.location.hash && window.location.hash.indexOf('#access_token=') !== -1) { var accessToken = window.location.hash.replace('#access_token…

Where would I change response_type=code to response_type=token?

When you generate the server side explicit flow, it looks something like this:

https://api.instagram.com/oauth/authorize/?client_id=CLIENT-...

Depending on the library you use, it may be default to response_type=code. Just get the URL and do a search and replace if the library doesn't allow you to define the type.

See https://www.instagram.com/developer/authentication/

Re: Ask HN: Does anyone else have problems with Instagram API OAuth2?

#37
post #34

Earlier quoted context omitted.

Where would I change response_type=code to response_type=token?

When you generate the server side explicit flow, it looks something like this: https://api.instagram.com/oauth/authorize/?client_id=CLIENT-... Depending on the library you use, it may be default to response_type=code. Just get the URL and do a search and replace if the library doesn't allow you to define the type. See https://www.instagram.com/developer/authentication/

[deleted]

Re: Ask HN: Does anyone else have problems with Instagram API OAuth2?

#38
post #34

Earlier quoted context omitted.

Where would I change response_type=code to response_type=token?

When you generate the server side explicit flow, it looks something like this: https://api.instagram.com/oauth/authorize/?client_id=CLIENT-... Depending on the library you use, it may be default to response_type=code. Just get the URL and do a search and replace if the library doesn't allow you to define the type. See https://www.instagram.com/developer/authentication/

I use this library: https://github.com/jaredhanson/passport-oauth2

Something tells me however that just changing it to 'token' (file strategy.js, line 217) actually fixes it, now there are other issues with many redirects when just changing that line, Im not entirely sure how that library works to fix anything else at this point, do you know when this issue might be resolved as a whole?

Re: Ask HN: Does anyone else have problems with Instagram API OAuth2?

#39
post #38

Earlier quoted context omitted.

When you generate the server side explicit flow, it looks something like this: https://api.instagram.com/oauth/authorize/?client_id=CLIENT-... Depending on the library you use, it may be default to response_type=code. Just get the URL and do a search and replace if the library doesn't allow you to define the type. See https://www.instagram.com/developer/authentication/

I use this library: https://github.com/jaredhanson/passport-oauth2 Something tells me however that just changing it to 'token' (file strategy.js, line 217) actually fixes it, now there are other issues with many redirects when just changing that line, Im not entirely sure how that library works to fix anything else at this point, do you know when this issue might be resolved as a whole?

Unfortunately, Instagram is terrible with responding to developer support tickets and there really isn't a much of a community aspect around it. This issue itself is not easily reproducible. The same account may work on one site and not a another site.
Post reply on HN