3

この例では、どのようにパラメータを画像の URl に追加できるのだろうと思っていました:

https://www.facebook.com/dialog/feed?app_id=...&link=...&picture=www.blablabladotcom?parameter1=1¶meter2=2&name=...&caption=...&description=...&redirect_uri = ...

%26 エンコーディングで試しましたが、画像が表示されません。奇妙なのは、redirect_uri パラメータで %26 を試すと、正常に動作することです。これについて何かヒントはありますか??

4

1 に答える 1

0

すべての部分を適切にエンコードする必要があります(以下の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を使用しているため、追加しました。

ソースはこちらです。

于 2013-02-21T07:01:47.090 に答える