I am looking to refresh my access_token for my instagram client, so that my users won't need to login every time the access token expires. Is there a way to do this without a refresh_token (the instagram api response does not contain a refresh_token).
You can see the steps laid out by instagram here: https://www.instagram.com/developer/authentication/
Here is the response object for the instagram oauth api:
{ "access_token": "fb2e77d.47a0479900504cb3ab4a1f626d174d2d", "user": { "id": "1574083", "username": "snoopdogg", "full_name": "Snoop Dogg", "profile_picture": "..." } }
I would expect for there to be a "refresh_token" field in the response so that later we can request a new "access_token".