How to open FB APP on phone to certain section of the app? - facebook

I am trying to send a link to the review section on the FB app so someone can leave a review for the business page.
This link opens the businesses app page but would like to structure it so it automatically opens the leave review section.
Any suggestions to ad something to the end of this URL to make this happen?
fb://profile/823389734392895/
http://screencast.com/t/1WLXnkGwTW3z
Much appreciated
Ps.. I would like to do this for Yelp also if possible
yelp:///biz/dc-auto-sales-inc-saint-louis

This is not supported. People have found ways to work around this, but it's not guaranteed to work and not officially supported.

Related

Facebook app id for website social plugins

I have like/share buttons on my website and am not currently using an appid. Finding information on whether this is a necessity for the above configuration is difficult to confirm. When going through the Facebook app "create" forms, I'm really confused by a lot of the requirements as it seems to be more focused around actual apps rather than websites, which login via fb etc.
In the past I have created an app for one of my other websites and I don't believe there was any verification/submission process at this point (about 2-3 years ago). Reviewing my old app configuration now I can see that it is not "live" - does anyone know whether Facebook implemented this submission process in the last couple of years, and then de-activated any live apps that were created prior to this?
I now want to setup a new app for my new website and I'm unsure what the different 'action types' mean and what I would need to simply use like/share buttons on the website. Could someone give me a quick run down of what I'd need and what they are?
Any other info/tips people can provide would be greatly appreciated. I'm finding that the like/share DO still work without the app, but sometimes the share button doesn't work properly (I have a feeling this is something to do with the app).
Thanks
If you are just using the Social Plugins, you don't need to have a Facebook App ID.
If you want more integration, it will be required. Creating an App ID is like registering your App, wether an iOS or Android App or just a website, so that you can make Graph API calls for it.
The easiest way to register your website is to go the quickstart: https://developers.facebook.com/quickstarts/?platform=web (or https://developers.facebook.com/apps). There you can type a name and follow the steps.
You can then follow the "Sharing best practices" (https://developers.facebook.com/docs/sharing/best-practices#tags) on how to use the App ID. For example, by including an fb:app_id meta tag on your pages.
There is a review process, since last April, but that is only needed if you use permissions for your App. If you just use the plugins, that is not needed.
Can you explain more what is exactly not working?
Update
The time you create a page the Facebook crawler does not know yet what the Opengraph data for that one is. This will happen after the first share, but if you want to ensure it is correct from the first share on, you can force a re-scrape.
This section explains how that works:
https://developers.facebook.com/docs/sharing/opengraph/using-objects#update
When an app triggers a scrape using an API endpoint This Graph API
endpoint is simply a call to:
POST /?id={object-instance-id or object-url}&scrape=true

Facebook аpp approval for social plugin

I want to get approval for my app id only for the like and share buttons of facebook but it seems that it got more complicated then before.
When I go to my app then javascript sdk to create the code of javascript for my site it shows
This app is in Development Mode and not available publicly.
Modo público can be enabled in the App Dashboard.
So then I go to the app dashboard and it is asking a lot of information I don't have because it's only to have the like button in my site I don't want to read more likes of users.
So anyone can help me to find the right way to do this.
The only thing you should have to fill in to make the app public is the Contact Email on the main Settings page:
(source: infused.org)
Found this thread whilst having the same problem. In addition to infused's post, you have to go to "status and review" and turn "Do you want to make this app and all its live features available to the general public?" to Yes.
Furthermore, I noticed that removing the app id (as per the code you get if you are not logged in and go to the plugin generator page), then the code does not work at all.
Also, if the app is not set as live, then it will still sometimes work - just to make things harder to debug.

Open graph action not aproved

I have app and blog which hase facebook based tutorials and news. When I try to make fb social reader app I'm getting this message. Can anyone help me with this?
I have completly diferent desing on my site. I'm using words like facebook,.. in news but i don't have anything other based on fb.
Your logo and site branding conflicts with Section 5.6 of the Facebook
Terms and Section I.8 of the Platform Policy
(https://developers.facebook.com/docs/guides/policy/policy_checklist/english/
). Please resubmit with a different graphic that reflects your own
branding and the ux of your site. Please make changes below and
resubmit for review.
The instructions you got seem pretty clear.
We don’t even know your site.
So how exactly do you think we can help you here …?
you have to submit Action to Facebook to be approved . goto facebook.com/developers select App then OpenGraph - Action click Submit ...

Facebook Application - Like Button

I'd like to develop a Flash/Flex based application that I'll integrate withing my Page on Facebook.
I've seen on many applications that in order for a user too see more stuff on the application, user first of all has to click LIKE button on my page.
I've searched but couldn't find right thing I've been looking for, probably I don't know how to search for it correctly.
Maybe you could help me out to find right source for that.
I don't think Liking the app really matter.
What you might be looking for is authorization from the facebook users. For instance if your app need to post status update on the user's wall, you'll need to get authorisation from him/her first.
You should probably read this (rather generic) intro on facebook's developer website:
http://developers.facebook.com/docs/guides/canvas/
This might be a helpful read too:
http://developers.facebook.com/blog/post/116/
Finally, haven't done it in AS3 but apparently Adobe has an as3 version of the facebook sdk available:
http://www.adobe.com/newsletters/inspire/november2010/articles/article6/index.html
http://code.google.com/p/facebook-actionscript-api/
what you are reffering to is liking a page beofore being able to interact with an application that has been embedded into a page. A page tab app.
You need to parse the signed_request that facebook passes to your application and once you have parsed it you will be able to see if the user has liked your page or not.
Here is a link to some more information about singed_requests

Suggestions on adding a comments section(not feedback) to my iPhone app?

My app is about sharing content and i want to give users the ability to share their comments about the content in the app... not a review or feedback to me but for sharing with other users.
I'm not sure on the exact word for it but I mean something like a talkback or a wallpost or a response like there is an option leave a comment here in stack overflow.
Anyway my question is if anyone knows of a way to do that?
I thought about using the Facebook graph api but never seen something like this before.
Thanks
UPDATE
found a great blog about disqus platform that shows how to add a comment section to an app using the disqus platform
thanks to superjessi for the idea..
You may want to look into the Disqus API. They're widely used for a commenting system and don't require users to make a new account, Disqus accounts work anywhere Disqus is used. I have seen other apps use it, and it seems to work beautifully.
What prevents you from storing those comments in your own database? Then you just have to design a standard UIView to enter the comments and show the comments in a WebView or an UIView.