0

ハイブリッド モバイル アプリケーションを使用しています (Android と ios で動作するはずです)。アプリケーションからFacebookウォールに投稿する必要があります。これはハイブリッド アプリであるため、Java または C コードを使用することは想定されていません。

次の方法を試しましたが、シミュレーターでは機能しますが、実際のデバイスでは機能しません。私を助けてください。

<script>
window.fbAsyncInit = function() {
FB.init({
appId : ' my appID',
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
};

(function() {
var e = document.createElement('script');
e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
e.async = true;
document.getElementById('fb-root').appendChild(e);
}());
</script>


        <script type="text/javascript">
$(document).ready(function(){
$('#share_button').live('click', function(e){
e.preventDefault();
FB.ui(
{
method: 'feed',
name: 'HyperArts Blog',
link: 'http://hyperarts.com/blog',
picture: 'http://www.hyperarts.com/_img/TabPress-LOGO-Home.png',
caption: 'I love HyperArts tutorials',
description: 'The HyperArts Blog provides tutorials for all things Facebook',
message: ''
});
});
});
</script>

ありがとう

4

1 に答える 1

1

私はこれに遭遇しました。your: FB SDK を取り込むと想定されている document.location.protocol は、実際には「file:///」であり、それがその FB JS ライブラリの URL に入力されます。http:// または https:// を手動で指定します。これは、IOS の safari webView でも機能しなかったため、AJAX を使用してエンドポイントを手動でヒットする必要がありました。

于 2013-07-10T00:37:38.413 に答える