私は統合されています。私はphp SDKを使って自分のウェブサイトに接続しています..すべてがうまく動いていますが、認証のためにフェイスブックにリダイレクトする代わりにOAuth Dialogを開きたいです。すべてのアイデアはOpen Auth Dialog in Facebook php SDK
https://www.facebook.com/dialog/oauth?client_id=XXXXXXXXXXX&redirect_uri=http%3A%2F%2Fwww.setsail2nz.com.au%2Fmicrosite%2Ffbalbums.php%3Fpid%3D1&state=ad89eddd7f71e7337785f604710c97e8&scope=user_photos%2Cpublish_stream%2Cmanage_friendlists%2Cemail&display=popup
...認証のために次のURLを使用して、...それはFacebookのにリダイレクトではなく、オープンのOAuth Dailogしていますか?
編集: 私はFacebook JS SDKでそれを行う方法を知っています。しかし、PHPでそれを行う方法はありますか?
編集2:わかりました、今JS SDKを使用してイムが、それでもそのダイアログを開いていない...ここでは、私のコード
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : 'XXXXXXXXXX', // App ID
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true, // parse XFBML
oauth : true // enables OAuth 2.0
});
};
// Load the SDK Asynchronously
(function(d){
var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
ref.parentNode.insertBefore(js, ref);
}(document));
function fblogin()
{
FB.login(function(response)
{
alert(response);
},{perms: "user_photos,publish_stream,manage_friendlists,email"});
}
</script>
これにはJS-SDKを使用できます。 –
うん、私はjavascriptについて知っている..しかし、PHPのSDDでそれを行うための方法はありますか? – casper123