I make a Facebook-Canvas App like last year. But On this Year is the problem that will not work on Mobile-Devices.
When i Post my App on my Test-Facebook-Page and i want open with my Mobile-Device, it coming a error-message "The requested page could not be found".
My Settings:
Facebook has recently disabled the automatic redirect of canvas links to the mobile site URL for a large number of apps, because some apps were using it to redirect users to malware sites.
Here’s the bug report for this: https://developers.facebook.com/bugs/1051463851558493/
It mentions a form where you can request that the feature be enabled again for your app.
Related
I made several apps that invited the user to create pictures, uploaded them to facebook and then sent them to a link on facebook that allowed them to set them as their profile picture:
https://www.facebook.com/photo.php?fbid=10152753169290428&makeprofile=1
In the last few days, facebook is just ignoring the makeprofile parameter. I just love developing for facebook, it's such a roller coaster ride.
Can anyone help? Is there an alternative?
You can redirect to the mobile URL like:
http://m.facebook.com/photo.php?fbid=[photo-id]&prof
and then it magically works.
The undocumented makeprofile=1 does still work, but the user needs to have permission to view the photo in the first place. I tested this on the following public image:
https://www.facebook.com/photo.php?fbid=10100464869430336&set=a.575724691546.2154239.60506094&type=1&makeprofile=1
Update (14 Dec 2014):
Clicking on the above link using a Desktop browser shows me the below popup on Facebook. The feature does still work (at least for me).
Good afternoon and happy new year!
I have a web site, whose URL is http://www.høly.com
The user will type something in the "type here & share" textbox and, when he clicks the Facebook logo, something will be shared to their Facebook timeline via an app.
1) I'm using Mozilla Firefox on Windows 8.1 and some users reported that Facebook sharing doesn't work on Mac OS X. It works for me though. The app is not sandboxed. I would like to know what is going on and how I can fix this.
2) Whenever someone shares my URL on Facebook (via copy-paste, not the app), I want it to have a specific image and a description. Can you please tell me how to do that?
For question 1: facebook plugins works on all browser, so there must be a javascript error in you code that prevents the execution of facebook script. 2. You can use og meta tags as described here
stackoverflow.com/questions/11616697
We're getting lots of visits today from what I think is an unidentified facebook app. Page urls include:
/?fb_source=canvasbookmark&count=0
/?fb_source=search&ref=ts
/?fb_source=canvasbookmark_more&count=0
/?fb_source=bookmark_apps&ref=bookmarks&count=0&fb_bmpos=3_0
/?fb_source=bookmark_apps&ref=bookmarks&count=0&fb_bmpos=6_0
/?fb_source=bookmark_seeall&ref=bookmarks
/?fb_source=bookmark_apps&ref=bookmarks&count=0&fb_bmpos=16_0
/?fb_source=appcenter_request
/?fb_source=bookmark_apps&ref=bookmarks&count=0&fb_bmpos=2_0
/?fb_source=bookmark_apps&ref=bookmarks&count=0&fb_bmpos=8_0
/?fb_source=bookmark_apps&ref=bookmarks&count=0&fb_bmpos=14_0
/?fb_source=bookmark_apps&ref=bookmarks&count=0&fb_bmpos=17_0
/?fb_source=bookmark_apps&ref=bookmarks&count=0&fb_bmpos=5_0
/?fb_source=bookmark_apps&ref=bookmarks&count=0&fb_bmpos=7_0
/?fb_source=bookmark_apps&ref=bookmarks&count=0&fb_bmpos=9_0
/?fb_source=bookmark_favorites&ref=bookmarks&count=0&fb_bmpos=9_0
We didn't create this app. Is there any way to identify it?
If it has the 'bookmarks' reference, it means the app is configured as a mobile or canvas app.
If it's a canvas app, these are likely POST requests to your server, not GET requests.
The POST request will contain a signed_request parameter with some variables for your app
You can see information on what's in that signed_request using the Echo tool on Facebook's developer site: https://developers.facebook.com/tools/echo?signed_request=SIGNED_REQUEST_HERE - i'm not sure if it'll show you the app ID, but it may provide enough other relevant information to see what app people are trying to load
I've been wrestling with Facebook xfbml code and og tags to insert a Like and Send button on pages of my website - and have decided that I really need an app ID as I'm getting errors from the send button - and also anticipate many thousands of pages being liked - and would like to manage them in an organised fashion, which I believe I can do if the website is registered as an app.
OK, so I started the process of creating my app - I got stuck almost straight away - on the basic info screen. None of the Tabs seem to fit my situation - I don't want my site to have a facebook login (I think... if that means that anyone who goes to it needs to first log in with Facebook) and it's not purely a mobile site etc... it's just a basic website that I need to Like and Send buttons to function on.
So I filled out the info that I can - noting the absence of the 'Website' tab that my 'How to' tutorial (non-FB) tells me should be there (perhaps that tab's been replaced with 'Website with Facebook login'?) and I try to continue but get this error:
You have specified an App Domains but have not specified a Site URL or a Mobile Web URL
www.mydomain.com.au must be derived from your Site URL or your Mobile Web URL.
Can someone please illuminate me here?
I've just duplicated and re-skinned an app I've used many times before. It's a simple Like gate with a name/email form to fill in.
I've copied the details for the app config within the developer app just as I do every other time. Last time I installed an identical app was about 3 weeks ago.
I am missing the "view app profile page" on any app I've tried to create today which means I can't add it as a custom tab to my pages to test it out, or get to it at all.
Anyone know why this may be the case please?
Thanks.
Try the following link
https://www.facebook.com/dialog/pagetab?app_id=[APP-ID]&redirect_uri=[http://www.yourdomain]
before use, replace:
[APP-ID] with your app id
[http://www.yourdomain] with the Facebook canvas or tab URL (on your domain; not the facebook.com one)
As you can see from this facebook developers blog post, facebook has started removing the "application profile page". This change will be completed 1st of February 2012. There are details in the blog post on how to handle these changes.