Hello, I publish posts to Facebook with this code
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?
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
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?