图形 API 签入

发布于 2024-11-16 04:55:45 字数 147 浏览 1 评论 0原文

您好,我正在开发一个应用程序,它将与 Facebook Graph API 进行通信,以在特定位置(只有一个)签入用户。

1)我让用户登录,并请求授权发布/登录位置 2) 我从 facebook 获取令牌,从而获得凭据

如何签入用户?在某个地点?

Hi I am developing an application that will communicate with Facebook Graph API to check in user at a particular location (only one).

1) I let the user sign in, and ask for authorization to publish/sign into locations
2) I get the token from facebook and thus acquire the credentials

How do I check in a user? at a location ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

花之痕靓丽 2024-11-23 04:55:45

您需要拥有该用户的 publish_checkins 授权。如果你明白了,你可以简单地向 http://graph.facebook.com/PROFILE_ID/checkins 发帖,它需要几个参数。请查看此页面的发布部分。

curl -F 'access_token=...' \
 -F 'message=The coffee is just meh.' \
 -F 'place=PAGE_ID' \
 -F 'coordinates={"latitude":"...", "longitude": "..."}' \
 -F 'tags=USER_ID1, USER_ID2' \
 https://graph.facebook.com/me/checkins

希望这会对您有所帮助。

You need to have publish_checkins authorization for the user. If you get that you can simply do a post to http://graph.facebook.com/PROFILE_ID/checkins which take several parameters. Please check publishing section of this page.

curl -F 'access_token=...' \
 -F 'message=The coffee is just meh.' \
 -F 'place=PAGE_ID' \
 -F 'coordinates={"latitude":"...", "longitude": "..."}' \
 -F 'tags=USER_ID1, USER_ID2' \
 https://graph.facebook.com/me/checkins

Hope this will help you.

呆萌少年 2024-11-23 04:55:45

您可以在 Facebook JavaScript SDK 中实现同样的目标。您需要 FB.login 中的“publish_checkins”扩展权限

FB.api('/me/checkins', 'post', 
       { message: 'Hurrey, At Facebook HQ...!!!',
           place: 110506962309835,
           coordinates: {
               'latitude': 37.4163458217,
               'longitude': -122.15198690595
           }
       },
       function (response) {
           console.log(response.id);
       }
);

You can achieve same thing in the Facebook JavaScript SDK. You need "publish_checkins" Extended permission in FB.login

FB.api('/me/checkins', 'post', 
       { message: 'Hurrey, At Facebook HQ...!!!',
           place: 110506962309835,
           coordinates: {
               'latitude': 37.4163458217,
               'longitude': -122.15198690595
           }
       },
       function (response) {
           console.log(response.id);
       }
);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文