独立应用程序的长时间访问令牌

时间:2013-11-20 12:45:18

标签: access-token facebook-access-token

我需要制作独立的应用程序(使用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
  1. 使用

    获取长时间令牌

    https://graph.facebook.com/oauth/access_token?client_id=APP_ID&client_secret=APP_SECRET&grant_type=fb_exchange_token&fb_exchange_token=SHORT_ACCESS_TOKEN

  2. 在此步骤中我得到回复

    {
       "error": {
          "message": "An unexpected error has occurred. Please retry your request later.",
          "type": "OAuthException",
          "code": 2
       }
    }
    

    我该如何解决?

1 个答案:

答案 0 :(得分:0)

问题通过直接从Graph API Explorer

获取SHORT_ACCESS_TOKEN来解决