Upload video using Facebook API for Tizen?

I am wondering how to upload a video using the Facebook API using a Tizen app that is developed in HTML5. Can anyone tell me how to integrate ..?

+1


source to share


1 answer


The code inside the widget should be similar to any other JavaScript implementation for uploading videos to Facebook for example: Uploading videos to Facebook via the graphical API Javascript SDK

The only caveat should be that any resource to which it faces from the outside should be declared (see Accessing external network resources):

By default, you cannot access external network resources (WARP: W3C Access Request Policy). So, you have to request permissions for the widget to fetch network resources. You can enter multiple URLs using the Add button on the Access tab. For each URL, you can specify if you want to allow the widget to access subdomains of the URL. Allow content of subdomain columns can be toggled with mouse clicks.



so it cannot work without accessing the resource, which is needed in our case, defined in config.xml

:

<access origin="https://graph.facebook.com/USER_ID/videos" subdomains="true"/>

      

+1


source







All Articles