我希望它获取信息,然后我可以将其插入数据库.我正在使用PHP并拥有一个域名.
我可以插入数据没问题,如果我可以得到数据.我不明白该怎么做.
对于一个模糊的问题,我很抱歉,我已经搜索过了.不要求你为我编写我的代码,只是指出我正确的方向,也许是一个现代教程做我要求的.谢谢.
并使用您的域配置它.这一步非常简单,将您想要的任何名称空间放在您的应用程序名称中,然后检查您的应用程序是否将用作应用程序和登录页面(不是粉丝页面或相关内容),最后指定URL(将Canvas URL留空) )你将使用Facebook API(我认为这个URL必须在HTTPS下,但我不知道为什么Facebook仍然允许HTTP,所以不要担心).
登录配置:
只需在URL中设置:http://yourdomain.com/
应用配置:
例如:http://www.mydomain.com/myfacebookapp/
所以,当用户去:
http://apps.facebook.com/yourappName
意味着他/她真的正在访问第一个链接和那个index.PHP,你需要从下面做所有事情.只是要知道,此时您还可以为您的应用程序设置徽标,管理应用程序的管理员并获取您需要在PHP文件中进一步使用的应用程序ID和密码.
(如果您在此步骤中感到困惑,可以进行Google搜索,此配置也很容易在YouTube中找到)
(2)我总是使用这些文件将我的PHP环境与Facebook API联系起来,你可以从这里下载:https://www.dropbox.com/s/itw4pav1f7a9vez/files.rar
(4)我将向您展示从用户那里获取数据和图片的方法,但首先他/她必须允许您的应用程序通过登录您的应用程序从他/她获取信息.因此,对于此示例,我将使用一个简单的按钮进行登录.
(别忘了更换你的应用ID和秘密 – ‘xxx’和’yyy’)
<?PHP require 'fb/facebook.PHP'; // Create our Application instance (replace this with your appId and secret). $facebook = new Facebook(array( 'appId' => 'xxx','secret' => 'yyy',)); // Get User ID $user = $facebook->getUser(); if ($user) { try { // Proceed knowing you have a logged in user who's authenticated. $user_profile = $facebook->api('/me'); } catch (FacebookApiException $e) { error_log($e); $user = null; } } // Login or logout url will be needed depending on current user state. if ($user) { $logoutUrl = $facebook->getlogoutUrl(); } else { $loginUrl = $facebook->getLoginUrl(); } ?> <html xmlns:fb="http://www.facebook.com/2008/fbml"> <head> <title>Facebook PHP SDK</title> </head> <body> <h1>Facebook PHP SDK</h1> <?PHP if ($user): ?> <a href="<?PHP echo $logoutUrl; ?>">logout</a> <?PHP else: ?> <div> Login using OAuth 2.0 handled by the PHP SDK: <a href="<?PHP echo $loginUrl; ?>">Login with Facebook</a> </div> <?PHP endif ?> <h3>PHP Session</h3> <pre><?PHP print_r($_SESSION); ?></pre> <?PHP if ($user): ?> <h3>You</h3> <img src="https://graph.facebook.com/<?PHP echo $user; ?>/picture"> <h3>Your User Object (/me)</h3> <pre><?PHP print_r($user_profile); ?></pre> <?PHP else: ?> <strong><em>You are not Connected.</em></strong> <?PHP endif ?> </html>
(5)上面的例子使用没有javascript的Facebook PHP SDK.因此,如果用户想要登录并授权您的应用获取他/她的信息,整个页面将被重定向到您应用的Facebook权限页面,然后返回到您的Facebook应用的主页面(在配置时指定)你创建了你的应用程序).
(6)下一个代码将与上面相同,但使用javascript和自定义Facebook登录按钮,允许您在问题中写入特殊权限.另一个区别是会出现一个弹出窗口,而不是重定向整个页面.
(别忘了更换你的应用ID和秘密 – ‘xxx’和’yyy’)
<?PHP require 'fb/facebook.PHP'; $facebook = new Facebook(array( 'appId' => 'xxx',)); // See if there is a user from a cookie $user = $facebook->getUser(); if ($user) { try { // Proceed knowing you have a logged in user who's authenticated. $user_profile = $facebook->api('/me'); $logoutUrl = $facebook->getlogoutUrl(); } catch (FacebookApiException $e) { $user = null; } } else { $loginUrl = $facebook->getLoginUrl(); } ?> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Facebook PHP SDK</title> </head> <body> <fb:login-button size="small" onlogin="after_login_button()" scope="email,user_about_me,user_birthday,user_status,publish_stream,user_photos,read_stream,friends_likes">Login with facebook</fb:login-button> <div id="fb-root"></div> <script> window.fbAsyncInit = function() { FB.init({ appId: '<?PHP echo $facebook->getAppID() ?>',cookie: true,xfbml: true,oauth: true }); /* This is used with facebook button */ FB.Event.subscribe('auth.login',function(response) { if (response.authResponse) { // Specify the login page (the page in which your fb login button is situated) window.location = 'main.PHP'; } }); FB.Event.subscribe('auth.logout',function(response) { window.location = 'logout.PHP'; }); }; (function() { var e = document.createElement('script'); e.async = true; e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js'; document.getElementById('fb-root').appendChild(e); }()); function after_login_button(){ FB.getLoginStatus(function(response) { if (response.status=="connected") { // If user is connected,redirect to this page window.location = 'main.PHP'; } },true); } </script> </body> </html>
(7)正如你所看到的,facebook登录按钮中的scope属性确定了你的应用程序需要哪些特殊权限和信息,例如他/她的电子邮件(总是私有的).
(8)只是添加一些内容,您只能使用以下代码从您认识他/她的身份的人那里获取公共信息:
(假设您的Facebook朋友的页面是:http://www.facebook.com/foobar或类似:http://www.facebook.com/users/profile/1002020300010)
//For example: your facebook friend's page is http://www.facebook.com/foobar $myFriend = $facebook->api('/foobar'); //For example: your facebook friend's page is http://www.facebook.com/users/1002020300010 $myFriend = $facebook->api('/1002020300010'); //Print information like your friend's name: echo $myFriend['name']; //Print all information captured: print_r($myFriend);
得到你朋友的照片:
<img src="https://graph.facebook.com/foobar/picture">
要么:
<img src="https://graph.facebook.com/1002020300010/picture">
最后,假设您拥有在变量中捕获的所有用户信息,您可以毫无问题地将所有数据插入数据库表.
希望这可以帮助 :-)