Android Question Posts posted by ( graph.facebook.com/v15.0/me/feed ) do not appear for the public

alfaiz678

Active Member
Licensed User
Hello, I publish posts to Facebook with this code
B4X:
Dim j As HttpJob
    j.Initialize("", Me)
    j.PostString("https://graph.facebook.com/v15.0/me/feed", _
    "message="& message &"&access_token="& access_token)
    Wait For (j) JobDone(j As HttpJob)
    If j.Success Then
        Log(j.GetString)
    End If
    j.Release
Deployment completed successfully
The problem: these posts appear to me, but when I log in to Facebook with a public account, it does not appear
Are there permissions that I need to grant or what?
 
Solution
After searching, I found that the problem lies in the application
If it is in publish mode
So, the posts that are sent through it to Facebook are visible to the public
Otherwise, only you can see the posts
1668147900372.png
Top