var hashid = 'abc123';
var title = 'Awesome Widget';
FB.api( // creating the widget object instance/record
'me/objects/myapp:widget',
'post',
{
object: JSON.stringify({
'app_id': <obfuscated>,
'url': 'http://example.com/' + hashid, // maps to og:url
'title': 'widget', // maps to og:title
'myapp:real_title': title, // maps to nothing right now! No bueno!
'image': { // maps to og:image
'url': 'http://example.com/images/' + hashid
},
'description': 'Man, this widget is awesome!' // maps to og:description
})
},
function(response) {
// handle the response
}
);
はい、カスタムの「widget」オブジェクトとカスタムの「real_title」プロパティを作成済みです。オブジェクトは作成されていますが、「real_title」プロパティは含まれていません:
og:title
各プロパティ (など)のオブジェクト インスタンス/レコードで特別な構文を指定する必要がありますか?
PS
特定の方法でユーザー ストーリーを作成したいog:title
ので、単純に「ウィジェット」になりたいと思っています。したがって、 も指定する必要がありますreal_title
。
PSS
オブジェクト インスタンス、オブジェクト レコード、またはその他のものを実際に作成していますか?