열린 그래프 이야기를 게시하려고 할 때 다음과 같은 오류가 발생합니다.Android 앱에서 열린 그래프 오류 : 작업이 하나 이상의 참조가 필요합니다
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);
가 어떻게 작동 할 수 있습니까?
페이스 북 공유와 관련된 다른 코드를 나에게 알려줄 수 있습니까? –
위의 코드와이 코드는 https://stackoverflow.com/questions/47912271/faceboook-android-sdk-error-publish-actions-being-required-to-post-a-share-dial 모두입니다. 지금까지 해왔다. – Siqueira