Facebook access for Tizen platform (using JS)

For my Tizen app, I need to do a Facebook integration (be able to login and post some statuses on the wall).

But I couldn't use the FacebookJS SDK because I need to customize the domain url. Unfortunately for Tizen, I don't have any urls because this is not a classic web app. I cannot use http://localhost

as domain name because Tizen app has url eg file://some/location/app

.

Anyone trying to integrate Facebook into the Tizen app?

PS. here's a link with a workaround https://developer.tizen.org/documentation/social-network-services-tizen but the example doesn't work because the deprecated facebook API is returning some error.

+3


source to share


2 answers


You can use the standard facebook webpage as the redirect url in these situations https://www.facebook.com/connect/login_success.html , and after a successful login, you need to read the parameters from the redirect url.



+3


source


You can also use resources http

, but you need to define an element access

in your manifest file in config.xml

order to access the required resource.



See the answer I gave here for reason and details: Upload videos using Facebook API for Tizen?

0


source







All Articles