phonegap-build / FacebookConnectを使用しています
すべて正常に動作しますが、Android アプリを使用して Facebook ウォールに投稿すると、ほとんどのテキストが表示されません。投稿の最後に「もっと見る」リンクすらありません。「説明」の2番目の文の半分で、すべてが壊れます。
この Android アプリで使用している JS 関数:
function facebookWallPost() {
console.log('Debug 1');
var params = {
method: 'feed',
name: 'Facebook Dialogs',
link: 'https://developers.facebook.com/docs/reference/dialogs/',
picture: 'http://fbrell.com/f8.jpg',
caption: 'Reference Documentation',
description: 'The Internet is a global system of interconnected computer networks that use the standard Internet protocol suite (TCP/IP) to serve billions of users worldwide. It is a network of networks that consists of millions of private, public, academic, business, and government networks, of local to global scope, that are linked by a broad array of electronic, wireless and optical networking technologies. The Internet carries an extensive range of information resources and services, such as the inter-linked hypertext documents of the World Wide Web (WWW) and the infrastructure to support email.'
};
console.log(params);
FB.ui(params, function(obj) { console.log(obj);});
}
スクリプト全体と例はここで見ることができます...
データ構造を変更し、パラメーターを JSON として投稿する必要がありますか? 前もって感謝します。助けていただければ幸いです...