Shakti
Shakti

Reputation: 996

how to handle Instagram access token expired error

I have an Instagram api used app while I am accessing user medias I am getting this response I do not know how to handle this error. I am using this api

https://api.instagram.com/v1/users/self/media/recent/?access_token=accesstoken

     code = 400;
    "error_message" = "The access_token provided is invalid.";
    "error_type" = OAuthAccessTokenException;

Upvotes: 0

Views: 461

Answers (1)

Sibabrat Swain
Sibabrat Swain

Reputation: 19

I think may be your access token is invalid so you need to re-authenticate the user to get new access token .Try With that new token it will work for you.

Upvotes: 2

Related Questions