3

これが私のコードです

<html>
    <head>
        <head>
            <title></title>

           <script type="text/javascript" charset="utf-8" src="cordova-1.6.0.js"></script>
           <script type="text/javascript">



                    function go()
                    {

                        FB.login(function(response) {
                                 if (response.authResponse) {
                                 console.log('Welcome!  Fetching your information.... ');
                                 FB.api('/me', function(response) {
                                        console.log('Good to see you, ' + response.name + '.');
                                        });
                                 } else {
                                 console.log('User cancelled login or did not fully authorize.');
                                 }
                                 });                        

                    }





                </script>

                <body>
                    <div id="fb-root">

                    </div>

                    <script>
                        window.fbAsyncInit = function() {
                            FB.init({
                                    appId      : '', // App ID
                                    channelUrl : '', // Channel File
                                    status     : true, // check login status
                                    cookie     : true, // enable cookies to allow the server to access the session
                                    xfbml      : true,  // parse XFBML
                                    oauth      : true  //oauth v2.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));

                        </script>

                    <input onclick="go();" type='submit' id='login-button' value='Login' name='login' >

                </body>
</html>

基本的に、ボタンをクリックすると、ログイン ポップアップが表示されます。通常のブラウザーで試してみると機能しますが、iPhone シミュレーターで試しても何も起こりません。また、ポップアップを許可するように iPhone ブラウザを設定しました。私は何を間違っていますか?

4

1 に答える 1

1

Childbrowserと呼ばれるphonegapプラグインを使用して動作させました:)

于 2012-04-20T10:03:42.533 に答える