Upload video to Facebook page with Graph API - RestFB - facebook

I've been trying to upload a video to my FB page using the Graph API through RestFB Java library. I am having an issue with the access token when accessing it through the Graph API explorer. To publish video it says my application needs review from FB but I only want to post to my own page. Where can I get an access token that allows publishing to my page without having to submit a review?
Thanks

Related

Video post doesn't showing on my Page after published by Facebook Graph API

I have a problem publishing my video on Facebook. I'm building a web application (API), I implemented Facebook Graph API docs to publishing video on a Facebook Page. Everything work fine, but if someone on Facebook visits my Page, they don't see the post, video isn't show with them. The post is set public mode, not limit everyone. I have raised a question, is that access token generated from Graph API Explorer only supports for testing user? Has anyone answered this question for me?

Retrieving Facebook Live comment real time from my facebook live streaming

I am new to using Facebook Graph API and I am building a python script that retrieves the user's comments from my Facebook Live Stream real time. The Live stream is on my Facebook page and I am the admin of the page. I read that it is required to have page access token so i got one.
I registered an app which is linked to my Facebook page and got the Page Access token from the Graph API Explorer.
I tried to retrieve a past stream's comments on my page by using this.
https://graph.facebook.com/{post_id}/comments?access_token={page_access_token}
For Live stream it should be
https://streaming-graph.facebook.com/{post_id}/live_comments?access_token={page_access_token}
Only my comments had the "form" JSON object. Comments made by other users does not have the "form" JSON object.
It looked like this
{"created_time":"2019-20-16T10:24:11+0000","message":"3","id":"442894059672528_442896329672301"}
Instead of
{"created_time":"2019-20-16T10:23:27+0000","from":{"name":"User A","id":"117461359653242"},"message":"1000","id":"442894059672528_442895933005674"}
Is it something wrong with the permission or the page access token?
Edit 1: Does the app needs to be submitted and live on Facebook?

How get all album images from my own facebook page

I am developing an android application that gets all photo albums from my Facebook page and show them. I want to do this without Facebook logging.
I tried using Facebook graph API USER TOKEN, but it limits API calls to 200 per hour. But my application will be used by large crowd.
I also tried using Facebook graph API APP TOKEN, but it asks for app review. For app review it needs to supply a screen-cast. How I create a screen-cast before creating the app or can you suggest a another way to do this

upload picture to facebook wall API graph 3.0

I was publishing pictures on Facebook wall of the current logged user using API GRAPH 2.6
Facebook announced this version will be deprecated and I want to use version 3.0
One of the radical changes is that publish_actions permission is not supported any more.
How can I publish a picture for the version 3?
My pictures are stored in AWS S3 and the URL expire very frecuently so I need to upload the picture not the URL
In the following images you can see I was trying with API GRAPH EXPLORER publish_action permission do not exists but the error given by facebook is claming that I need that permission. Is very confusing

How to post to user feed through facebook graph api when he is offline

I created application with publish_stream permissions, now i can post on the user wall when he is using my application, but when he is offline how can i post images or status update on his wall with graph api explorer it is giving me error.