문제

I hope someone can help, I am about to intergrate with Instagram, I have followed instructions I have authrorised the app and received code=""

curl \-F 'client_id=CLIENT-ID' \
    -F 'client_secret=CLIENT-SECRET' \
    -F 'grant_type=authorization_code' \
    -F 'redirect_uri=YOUR-REDIRECT-URI' \
    -F 'code=CODE' \https://api.instagram.com/oauth/access_token

I do this curl to get an access token but I can't find anywhere for "authorization_code"

Am I missing something here?

Thanks!

도움이 되었습니까?

해결책

Found the answer for future people:

authorization_code is the param.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top