In my facebook application I have my custom object 'Level' and my custom action 'Complete'. Also I created a story with that action and object for my application. When user completes a level I create an instance of Level, take ID of that instance from response and post Complete action with that ID. But in Activity Log there is 2 entries. The first seems right: "User completed SampleLevel in MyFBApp", but there is also second entry: " User posted SampleLevel in MyFBApp". And I can't understand why this 'Post' action appears in Activity Log. I didn't configure any 'Post' actions connected to my 'Level' object, and I don't post anything like that from my app. Could someone explain me what I'm doing wrong?
相关问题
- facebook error invalid key hash for some devices
- LoginActivty with Firebase & Facebook authenticati
- facebook “could not retrieve data from URL”
- JDK 11. javax.net.ssl.SSLPeerUnverifiedException:
- setRequestHeader Content-Type causes POST request
相关文章
- Facebook login for group members
- The method FB.api will stop working when called fr
- React native deep linking vs Facebook SDK conflct
- UIActivity with no settings for Facebook
- facebook send API Error Code: 100 API Error Descri
- How to fix 'Facebook has detected MyApp isn
- Can't use Facebook Account Kit: Error inflatin
- Facebook API error subcode 33
I've figured out what is wrong with this workflow. When I create object through application with user access token, I create user owned object and this activity automatically appears in user activity log as 'Post' action. In my case I need application owned objects, and it could be done with application access token or by using self-hosted objects. Question closed.