私は Facebook API を初めて使用し、Facebook 認証に関連するいくつかの質問があります。アプリケーションを作成し、ドメインと URL を編集しました。
ウェブサイト ドメイン giftme.web44.net サイト URL http://www.giftme.web44.net/
私は自分のサイトのウェブページで以下を使用しました:
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : '3347207XXXXXXXX', // App ID (I've replaced for security reasons)
channelUrl : 'http://giftme.web44.net/channel.html/', // Channel File
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
// Additional initialization code here
};
// 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));
</script>
そして、これだけでページ「channel.html」を作成しました:
<script src="//connect.facebook.net/en_US/all.js"></script>
最後に、ログインボタンを使用しました:
<div class="fb-login-button" >Login with Facebook</div>
私は何を間違っていますか?このエラーが発生し続けます:
API エラー コード: 191 API エラーの説明: 指定された URL はアプリケーションによって所有されていません エラー メッセージ: Invalid redirect_uri: A URL informada não é permitida pela configuração do aplicativo.