我创建Facebook登录集成但我有一个错误? [英] I Create Facebook Log In Integration But I Have One Error?

查看:119
本文介绍了我创建Facebook登录集成但我有一个错误?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有这种错误应用程序配置不允许给定URL并且我在完全错误下面发布



给定的URL不允许应用程序配置:应用程序的设置不允许使用一个或多个给定的URL。它必须与网站URL或Canvas URL匹配,或者域必须是App域之一的子域。



这不是我的代码我只是尝试并从网站上获取代码。



i have this kind of Error "Given URL is not allowed by the Application configuration" and i post below my Full Error

Given URL is not allowed by the Application configuration.: One or more of the given URLs is not allowed by the App's settings. It must match the Website URL or Canvas URL, or the domain must be a sub domain of one of the App's domains.

This is not my code i am just try and get code from on website.

<html xmlns="http://www.w3.org/1999/xhtml">
<head  runat="server">
    <title>Facebook login</title>
    <script src="http://code.jquery.com/jquery-latest.js" type="text/javascript">
</script>
</head>
<body>
    <form id="form1"  runat="server">
    <div>
    <table align="center"><tbody>
<tr> <td align="center" style="color: #33ccff; font-size: large; font-weight: bold; text-transform: capitalize;"></td></tr>
<tr> <td align="center" style="margin-top: 350px;"><script type="text/javascript">
   // 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));

// Init the SDK upon load
window.fbAsyncInit = function () {
    FB.init({
        appId: '1402660203333505', // App ID
        channelUrl: '//' + window.location.hostname + '/channel', // Path to your Channel File
        status: true, // check login status
        cookie: true, // enable cookies to allow the server to access the session
        xfbml: true  // parse XFBML
    });

    // listen for and handle auth.statusChange events
    FB.Event.subscribe('auth.statusChange', function (response) {
        if (response.authResponse) {
            // user has auth'd your app and is logged into Facebook
            FB.api('/me', function (me) {
                if (me.name) {
                    document.getElementById('auth-displayname').innerHTML = me.name;
                }
            })
            document.getElementById('auth-loggedout').style.display = 'none';
            document.getElementById('auth-loggedin').style.display = 'block';
        } else {
            // user has not auth'd your app, or is not logged into Facebook
            document.getElementById('auth-loggedout').style.display = 'block';
            document.getElementById('auth-loggedin').style.display = 'none';
        }
    });
    $("#auth-logoutlink").click(function () { FB.logout(function () { window.location.reload(); }); });
}





请帮帮我!!!



please help me!!!

推荐答案

(#auth-logoutlink)。click(function(){FB.logout(function(){window.location.reload();});});
}
("#auth-logoutlink").click(function () { FB.logout(function () { window.location.reload(); }); }); }





请帮帮我!!!



please help me!!!


查看此问题 SO链接 [ ^ ]和问题中的5个链接。我认为问题1 [ ^ ]应该帮助你。
See the question at this SO link[^] and the 5 links inside the question. I think the Question 1[^] should help you.


这篇关于我创建Facebook登录集成但我有一个错误?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆