オープン・グラフストーリーを投稿しようとすると、次のエラーが表示されます。Androidアプリでオープン・グラフ・エラーが発生しました:アクション少なくとも1つの参照が必要
Error{FacebookServiceException: httpResponseCode: -1, facebookErrorCode: 1611072, facebookErrorType: null, message: Action
Requires At Least One Reference: The action you're trying to publish
is invalid because it does not specify any reference objects. At least
one of the following properties must be specified: victory.
私は、ドキュメントでこのプロパティ勝利については何も見つかりませんでした。
私が話を投稿する使用していますコード:
ShareOpenGraphObject object = new ShareOpenGraphObject.Builder()
.putString("og:type", "games")
.putString("og:title", "<Title>")
.putString("og:url","<website>")
.putString("og:image","<image link>")
.putString("og:description", "Teste")
.build();
ShareOpenGraphAction action = new ShareOpenGraphAction.Builder()
.setActionType("games.celebrate")
.putObject("games", object)
.build();
ShareOpenGraphContent content = new ShareOpenGraphContent.Builder()
.setPreviewPropertyName("games")
.setAction(action)
.build();
ShareDialog.show(thisActivity, content);
は、どのように私はそれを動作させることができますか?
facebook sharingに関する他のコードを教えてもらえますか? –
上記のコードとこれは:https://stackoverflow.com/questions/47912271/faceboook-android-sdk-error-publish-actions-being-required-to-post-a-share-dial 私はすべてですか?今までやったことがあります。 – Siqueira