I am trying to display my Facebook videos in an ionic 2 app but the URL is not working. In browser, I am getting message "Unavailable
This video can't be embedded." and in emulators the display is blank.
Any suggestions.
I found this link Embeded Video Player it worked for me, I hope this would also help you. To setup Facebook SDK in your ionic app. please visit this link Ionic Facebook Native
Related
In my react web app I have a link to share a website url on Facebook:
<Link href={`https://www.facebook.com/sharer/sharer.php?u=${this.props.shareUrl}`}>
Share on Facebook
I could also use a plain html link like so
<a href={`https://www.facebook.com/sharer/sharer.php?u=${this.props.shareUrl}`}>Share on Facebook</a>
When this is clicked Safari is launched and the Facebook web page is displayed.
What would I need to do to get the native Facebook ios or android app to launch (instead of a browser) if it is installed? Could I carry on using this link or would I need to use a share button or install the Fb SDK?
Try this one to open a Facebook app from URL. It works for me.
Linking.openURL("fb://facewebmodal/f?href=https://www.facebook.com/FixadorPT/");
I create a facebook canvas app using java script sdk everything works fine but the problem is i am unable to add screen shots images only i add all other images like logo and banner images using my app details panel and these images display fine on app detial page but without screenshot images i can not submit my app to facebook app center. I read all the documents and search a lot for right solution but did not find how to add these images can anybody tell me how to add these and does facebook approve my app if i submit my app without these images.
Here you can add the images for app detail page:
https://developers.facebook.com/x/apps/<your app id>/app-details/
Try to get high resolution images for best result.
Got the solution you can display this option by just set website to yes in App Center Listed Platforms on your app detial page.
I'm trying to set a QR code link that showing me a photo uploaded into a new album in Facebook by a remote script.
I saw this page: AKOSMA
I then added fb://photo/id to my qrcode generator script
On Android, the URL works!
on iPhone it loads the Facebook app and loads a white page with no photos.
What URL am I supposed to use?
I tried some other URLs that I read about in the link above, but it doesn't work.
Unfortunately it doesn't seem it's possible. I tried in may ways!
At the moment I am linking to the photo in mobile Safari: #"http://www.facebook.com/photo.php?fbid=%#"
getshrekit.com : Yesterday I was facing problem in Facebook. I was register App on Facebook and that keys are incorporated in ShareKit when I was click the Facebook button I was getting error Screen shot attached.
Please provide your feedback.!
Whenever you use ShareKit, you need to first check updated version of it. You can follow this link and i hope it will certainly help you. http://getsharekit.com/docs/
I am developing an app that use UIWebView to display a list of videos from youtube.
For playing the videos I use the youtube embed feature and it open the youtube application when the user clicks the video thumbnail - works great.
I want the same functionality to be executed when I click a "Watch Now" button that will be located near the youtube thumbnail on my web view but when I try to use "href" to the youtube video it opens the "youtube play page" and not the youtube iPhone application like in the embed way...
Any ideas?
Netanel.
I've created a test project with following code executed:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:#"http://www.youtube.com/watch?v=5ra01Bqef7A"]];
Running the project in Simulator allowed to reproduced the issue you've stumbled upon: test app launched Safari and it simply opened the Youtube video's page. But when I ran the same project on an iPhone the result was different: it launched the Youtube app and it started lading/playing the video in the URL right away.
The reason why the same code behaves itself differently is that there's no Youtube app in Simulator, so the only URL handler available in its environment is Safari. So everything's working as it should, you can continue developing your app.
BTW here's a really nice official blog post from Youtube about integrating it with iPhone apps: YouTube APIs + iPhone = Cool mobile apps