0

このコードを使用する(ドキュメントで見つけることができる唯一の関連コード)

[AddThisSDK shareURL:self.data.url
                  withService:@"facebook"
                        title:@"this is the title text"
                  description:@"the description"];

次の問題を伴う「壁に投稿」ダイアログが表示されます。

  1. 「これについて何か言ってください...」フィールドは空です。それを事前入力できますか?
  2. 「これについて何か言ってください」フィールドの下に、「android マーケットで入手可能」アイコンが表示されます。これは iOS であり、なぜこれが表示されるのかわかりません。
  3. 「無題のドキュメント」がリンク ヘッダーとして表示され、その下にタイトル テキストと説明が表示されます。「無題のドキュメント」をより便利なものに置き換えるにはどうすればよいですか?
4

1 に答える 1

2
  1. The "Say something about this..." cannot be overridden because it's a FB control and they don't want Apps to post content without the user's consent. An alternative would be to use the FB API to post directly to the user's wall and not use the dialog.

  2. The image being shown is pulled from the page you're trying to share. Make sure you have the right Open Graph tags set. You can use this page to see if your tags are correctly set:

http://developers.facebook.com/tools/debug

  1. Not sure about the "Untitled Document" issue, if you haven't already, try the demo App and replace it with your variables and see if you get the same result.
于 2012-09-17T13:58:27.203 に答える