创建Facebook测试用户时访问令牌的问题

时间:2010-12-19 21:33:03

标签: php facebook facebook-graph-api access-token

我正在尝试为我的Facebook应用程序创建测试用户。他们在11月的这篇博客文章中宣布了这一功能(http://developers.facebook.com/blog/post/429),并在此处记录(http://developers.facebook.com/docs/test_users/)。我在其他地方找不到答案......

根据文档,“您可以使用带有应用程序访问令牌的Graph API创建与特定应用程序关联的测试用户。”这链接到“作为应用程序进行Autenticating”部分并描述了这个CURL脚本:

curl -F grant_type=client_credentials \
 -F client_id=your_app_id \
 -F client_secret=your_app_secret \
 https://graph.facebook.com/oauth/access_token

到目前为止,这么好。我跑了这个并得到以下内容:

access_token=1182...18|nTI...r5Q

所以现在我想将此令牌发布到图形api测试用户URL:

POST /1182...18/accounts/test-users?installed=true&permissions=read_stream&access_token=1182...18|nTI...r5Q  

当我这样做时(使用Facebook PHP SDK并在浏览器中输入)我得到:

{
    "error": {
      "type": "OAuthException",
      "message": "Invalid OAuth access token."
    }
}

所以问题是:

  • 为什么我收到此错误消息?
  • 我使用了错误的访问令牌(尽管Facebook明确告诉我使用这个吗?)
  • 我是否需要以某种方式解析访问令牌?

    感谢您的帮助。

  • 3 个答案:

    答案 0 :(得分:2)

    以下是一些允许您使用PHP SDK创建测试用户的working code

    答案 1 :(得分:0)

    确保您的访问令牌在传回Facebook时正确地进行了urlencoded。

    答案 2 :(得分:0)

    我收到此错误,直到我从我看到的示例代码中删除了一些参数。下面是python中使用我最终设法运行的请求的示例:

    # Get the access token
    resp = requests.get(
        'https://graph.facebook.com/oauth/access_token?grant_type=client_credentials&client_id={app_id}&client_secret={app_secret}'.format(
            app_id=APP_ID, # Your app id (found in admin console)
            app_secret=APP_SECRET  # Your app secret (found in admin console)
        )
    )
    # Parse the token
    token = resp.content.split('=')[-1]
    
    # Create the user
    data = {'access_token': str(token)}
    resp = requests.post(
        'https://graph.facebook.com/{app_id}/accounts/test-users?installed=true'.format(
            app_id=APP_ID
        ),
        data=data
    )
    print resp.content