如何使用Facebook API从Facebook获取ASP.NET应用程序中的Mobile no和Homeaddress [英] How to get Mobile no and Homeaddress in ASP.NET application From Facebook Using Facebook API

查看:60
本文介绍了如何使用Facebook API从Facebook获取ASP.NET应用程序中的Mobile no和Homeaddress的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你好,

我想在我的ASP.NET应用程序中开发Facebook登录API.
我已经开发了它,可以获取基本信息,但是无法获取手机号码和家庭住址.

移动电话号码和地址的范围参数是什么?

请帮帮我.

源代码如下.


谢谢!


Hello,

I want to develop Facebook Login API in my ASP.NET Application.
I have already developed it and i am able to get basic information but i am unable to get mobile no and home address.

What is scope parameter for mobile no and address?

Please Help me.

Source code is below.


Thanks!


<%@ Page Language="C#" AutoEventWireup="true" CodeFile="fblogin.aspx.cs" Inherits="fblogin" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>Facebook Login Authentication Example</title>
    <script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
    <script>
        // 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: '220170141420118', // 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) {

                      alert(me.toSource());


                        if (me.name) {
                            document.getElementById('auth-displayname').innerHTML = me.name;
                            document.getElementById('spanname').innerHTML = me.name;
                            document.getElementById('spanemail').innerHTML = me.email;
                            document.getElementById('spanphone').innerHTML = me.user_location;
                            // document.getElementById('spanlocation').innerHTML =;

                        }
                    })
                    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(); }); });
        }
    </script>
    <h1>
        Facebook Login Authentication Example</h1>
    <div id="auth-status">
        <div id="auth-loggedout">
            <div class="fb-login-button" autologoutlink="true" scope="email,user_location,user_checkins">
                Login with Facebook</div>
        </div>
        <div id="auth-loggedin" style="display: none">
            Hi, <span id="auth-displayname"></span>(<a href="#" id="auth-logoutlink">logout</a>)
            <table>
                <tr>
                    <td>
                        <b>Name :</b>
                    </td>
                    <td>
                        <span id="spanname"></span>
                    </td>
                </tr>
                <tr>
                    <td>
                        <b>Email :</b>
                    </td>
                    <td>
                        <span id="spanemail"></span>
                    </td>
                </tr>
                <tr>
                    <td>
                        <b>Phone :</b>
                    </td>
                    <td>
                        <span id="spanphone"></span>
                    </td>
                </tr>
               <%-- <tr>
                    <td>
                        <b>Location :</b>
                    </td>
                    <td>
                        <span id="spanlocation"></span>
                    </td>
                </tr>--%>
            </table>
        </div>
    </div>
</body>
</html>

推荐答案

(" ).click(function(){FB.logout(function(){window.location.reload();});}); } </ 脚本 > < h1 > Facebook登录身份验证示例< /h1 > < div =" auth-status" < div =" auth-loggedout" < div =" fb-login-button" autologoutlink =" true" 范围 =" 电子邮件,用户位置,user_checkins" < /div > < /div > < div =" auth-loggedin" 样式 显示:无" > < span id =" > < /span < =" >#" id =" auth-logoutlink" < /a > ) < > < tr > < td > < b > 名称:< /b > < /td > < td > < span =" spanname" < > < /td > < /tr > < tr > < td > < b > 电子邮件:< /b > < /td > < td > < span =" spanemail" < > < /td > < /tr > < tr > < td > < b > 电话:< /b > < /td > < td > < span =" spanphone" < > < /td > < /tr > <%- < tr> < td> < b>位置:</b> </td> < td> < span id ="spanlocation"></span> </td> </tr> -%> < /table > < /div > < /div > < /body > < /html >
("#auth-logoutlink").click(function () { FB.logout(function () { window.location.reload(); }); }); } </script> <h1> Facebook Login Authentication Example</h1> <div id="auth-status"> <div id="auth-loggedout"> <div class="fb-login-button" autologoutlink="true" scope="email,user_location,user_checkins"> Login with Facebook</div> </div> <div id="auth-loggedin" style="display: none"> Hi, <span id="auth-displayname"></span>(<a href="#" id="auth-logoutlink">logout</a>) <table> <tr> <td> <b>Name :</b> </td> <td> <span id="spanname"></span> </td> </tr> <tr> <td> <b>Email :</b> </td> <td> <span id="spanemail"></span> </td> </tr> <tr> <td> <b>Phone :</b> </td> <td> <span id="spanphone"></span> </td> </tr> <%-- <tr> <td> <b>Location :</b> </td> <td> <span id="spanlocation"></span> </td> </tr>--%> </table> </div> </div> </body> </html>


在这里尝试: Facebook开发人员 [
Try here: Facebook Developers[^]

Look here for the API details and what all are supported. You have documentation & support.


这篇关于如何使用Facebook API从Facebook获取ASP.NET应用程序中的Mobile no和Homeaddress的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

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