Closed steffanjensen closed 8 years ago
@reliefs probably at this address https://api.instagram.com/v1/users/self/follows?access_token=123456789.1234567.0123456789abcdefghijklmnopqrstuv (replacing the access_token with your) you will have your answer.
You should get something like this:
{"meta": {"error_type": "OAuthPermissionsException", "code": 400, "error_message": "This request requires scope=follower_list, but this access token is not authorized with this scope. The user must re-authorize your application with scope=follower_list to be granted this permissions."}}
I resolved sniffing the access_token from another application to 3rd parties! ;)
Not working here. :( error msg:
Token found...
Started Un-following
Traceback (most recent call last):
File "
@giando so if I get that message, how easy it is to add those permissions (scope=follower_list) to my access_token?
same problem with @julayjb
Guys, you are getting the errors because Instagram changed its API behavior to not allow accessing someone else's data when the application is in sandbox mode. As much as I want to publish the app in live mode, i can't, since it will not be approved.
I may plan to create a UI based app to do the same, publish it for review. But for now, this won't work.
Exactly, I have had the pleasure of using it for only 8 days, and worked perfectly. Then they changed the API and it was a mess. Thanks anyway for all, @gideonn, you are Great!
You can solve your problem by visiting the site below:
Change YOUR-CLIENT-ID with your client ID Change YOUR-REDIRECT-URI with your registered redirect URI
for example
It is working at the moment.
File "C:\Users\pc\Downloads\insta-Unfollow-Users-master\insta-Unfollow-Users-master\instaUnfollower.py", line 132, in
core()
File "C:\Users\pc\Downloads\insta-Unfollow-Users-master\insta-Unfollow-Users-master\instaUnfollower.py", line 45, in core
json_length = len(json_data['data'])
KeyError: 'data'
Why am i getting this error?