この例では、どのようにパラメータを画像の URl に追加できるのだろうと思っていました:
%26 エンコーディングで試しましたが、画像が表示されません。奇妙なのは、redirect_uri パラメータで %26 を試すと、正常に動作することです。これについて何かヒントはありますか??
この例では、どのようにパラメータを画像の URl に追加できるのだろうと思っていました:
%26 エンコーディングで試しましたが、画像が表示されません。奇妙なのは、redirect_uri パラメータで %26 を試すと、正常に動作することです。これについて何かヒントはありますか??
すべての部分を適切にエンコードする必要があります(以下のJavaスクリプトコードの例)。
var _FBAPPID = "xxxxxxxxxx", // your app ID (mandatory)
_name = "name",
_text = "text",
_link = "link",
_picture = "http://cdn2.insidermonkey.com/blog/wp-content/uploads/2012/10/facebook4-e1349213205149.jpg", // some google image - replace it
_caption = "caption",
_redirect_uri = "http://google.com" // this URL must be from within the domain you specified in your app's settings
var _params = "&name=" + encodeURIComponent(_name)
+ "&description=" + encodeURIComponent(_text)
+ "&link=" + encodeURIComponent(_link)
+ "&picture=" + encodeURIComponent(_picture)
+ "&caption=" + encodeURIComponent(_caption)
+ "&redirect_uri=" + encodeURIComponent(_redirect_uri);
var _href = "http://www.facebook.com/dialog/feed?app_id=" + _FBAPPID + _params + "&display=touch";
display=touch
また、モバイルデバイスにのみ直接URLを使用しているため、追加しました。
ソースはこちらです。