How to get access to LinkedIn Live Video API?
We want create a stream app for go live from my platform but I am not found linkedin live video api.
Related
We are using this api https://developers.facebook.com/docs/marketing-api/reference/ad-account/advideos/
to upload a video to our ads manager on facebook.
the response from facebook is id.
now, if this video was selected to create an ads in facebook ads manager and there were campaign that is live or ends - we would like to get the video performance and metrics such as likes, impression, etc of that campaign.
So we are trying to get the ads performance by the videoAds Id.
we tried using video_insight api: https://developers.facebook.com/docs/graph-api/reference/video/video_insights/ (we have all the permissions) with no success.
even if we get the AdsCreative we can not connect it to the videoAds id we received when uploading the video to the facebook ads manager...
Instagram API endpoint for getting other business account media data
GET graph.facebook.com/VERSION/BUSINESS_ID?
fields=business_discovery.username(bluebottle)
{media{id,caption,media_type,media_url}}
It works great for getting Images and Videos URL.
But for getting Videos thumbnail_url (REF), I have to modify it to
GET graph.facebook.com/VERSION/BUSINESS_ID?
fields=business_discovery.username(bluebottle)
{media{id,caption,media_type,media_url,thumbnail_url}}
And this query WILL FAIL as thumbnail_url is only available for media of type VIDEO
How can I get Videos thumbnail_url?
NOTE: If possible I want multiple Videos thumbnail_url with a single query. Eg. in Facebook API we can get it via (https://graph.facebook.com/v2.11?fields=full_picture&ids=ID1,ID2)
May be you use wrong token. thumbnail_url is not a public field,- it's available only for user that create this media.
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
I have a business manager account for my Facebook profile and I re-shared a video from another profile. How can I retrieve the number of views that my re-share accounted for through the Facebook Graph API?
If the video were posted directly to my profile rather than re-shared, I'd be able to use the /v2.8/{video-id}/video_insights method to retrieve the video stats, but that does not appear to be available for re-shares. The only insights that I can find for re-shares appears to be /v2.8/{post-id}/insights, but that does not include video views.
For example, here is a Facebook post by The Dodo where they are re-sharing a video by Discovery News.
This information can be retrieved by making a call to /v2.8/{post-id}/insights/post_video_views
I am using Corona and have integrated my app to share a message and photo using FB Graph Api. Does anyone know how to post video in Corona.
According to http://developers.facebook.com/docs/reference/api/ there are no write permission on Facebook for uploading video.
You can use facebook.request( "me/photos", "POST", attachment ) to post photos, but there are no "me/video" or anything similar, mostly because Facebook do not want it for some reason of their own.
https://developers.facebook.com/docs/reference/api/video/ mentions two How-Tos:
How to upload a video to a user's profile using Graph API: “To publish a video, issue a POST request with the video file attachment as multipart/form-data to https://graph-video.facebook.com/me/videos”
How to upload a video to an Application, Group, or Page's wall using Graph API