我需要制作独立的应用程序(使用facebook sdk for .net)将照片发布到相册和墙上。我想获得长时间访问令牌。我试了两步: 1.获得具有此类请求的短访问令牌
https://graph.facebook.com/oauth/access_token?client_id=APP_ID&client_secret=APP_SECRET&grant_type=client_credentials
它会像我这样返回令牌:
access_token=APP_ID|SHORT_ACCESS_TOKEN
使用
获取长时间令牌在此步骤中我得到回复
{
"error": {
"message": "An unexpected error has occurred. Please retry your request later.",
"type": "OAuthException",
"code": 2
}
}
我该如何解决?
答案 0 :(得分:0)
问题通过直接从Graph API Explorer
获取SHORT_ACCESS_TOKEN来解决