0

我想要一个自定义的弹出窗口,我想从中发送应用程序请求?

我如何做到这一点?

4

1 回答 1

0

您可以通过 http graph api 发送应用程序请求,这只是一个 http 帖子...因此您可以为此构建自己的界面,请参阅https://developers.facebook.com/docs/channels/

<?php 

$app_id = YOUR_APP_ID; $app_secret = YOUR_APP_SECRET;

$token_url = "https://graph.facebook.com/oauth/access_token?" . “client_id=”。$app_id 。“&client_secret=”。$app_secret 。"&grant_type=client_credentials";

$app_access_token = file_get_contents($token_url);

$user_id = THE_CURRENT_USER_ID;

$apprequest_url =“https://graph.facebook.com/”。$user_id 。“/apprequests?message='INSERT_UT8_STRING_MSG'”。“&data='INSERT_STRING_DATA'&”。
$app_access_token 。"&method=post";

$result = file_get_contents($apprequest_url); echo("应用请求发送了吗?", $result); ?>

于 2012-04-16T13:11:50.180 回答