如何使用自定义弹出窗口发送Facebook应用程序请求?

时间:2012-04-16 13:04:31

标签: facebook

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

我如何实现这一目标?

1 个答案:

答案 0 :(得分: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。     “&amp; 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'”。     “&安培;数据= 'INSERT_STRING_DATA' 和;” 。
    $ app_access_token。 “&安培;方法=交”;

$ result = file_get_contents($ apprequest_url);   echo(“App Request sent?”,$ result); ?&GT;