Wifi Hotspot that requires a Facebook 'Like' to connect? [closed] - facebook

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I'm setting up a free Wifi hotspot that guests can use. I would like them to have to 'Like' the company's Facebook page to get Wifi access. Facebook DOES provide "Check in to use Wifi", but since we are not a shop/restaurant etc. I would like for the user to "like" the page instead. I know that this question has been asked on SO a couple of times, but there seems to be no solution yet. I know there are companies that provide this service for really high charges, so it is possible, but since I'm a web dev, I would like to do it myself! Any help is greatly appreciated!

This "like-gating" via the SignedRequest functionality will stop working on November 6th 2014, as stated in the official docs at https://developers.facebook.com/docs/apps/changelog#v2_1_90_day_deprecations
The 'liked' property will no longer be returned in the 'signed_request' object for Page Tab apps created after today. From November 5, 2014 onwards, the 'liked' property will always return 'true' regardless of whether or not the person has liked the page.

Related

API to share to all social media on one click [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I am working on an application,which allows the user to share his promos(promos are daily deals) to all social media in a single click.That is I want to connect his FB,twitter and Linkedin accounts and authorize once and later he can share it to his FB,twitter,linkkedin with a single share button and a message fiels to add custom messg.
Tried to find something online but there are only individual plugins which are mostly for login and not for connect.These sites hootsuite and buffer app have this feature but they dont provide it for third party apps.
Can anyone point to a library that has this feature to connect all the social media and then post to the user wall?
you can use shareholic api to share content across all social media.
https://shareaholic.com/api
There is no library, you have to program that on your own by using all the APIs of those Social Networks - which is what Hootsuite does. That´s why you have to authorize the Hootsuite App to make this work.
https://developers.facebook.com/docs
https://dev.twitter.com/
https://developers.google.com/+/api/
https://developer.linkedin.com/

Scrape images from wall photo album on facebook [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
Is it possible to scrape the pictures and titles of an album of a facebook group? Any ideas or know a good tutorial to get going with this?
It does not look like this is possible using the API.
You should be able to make a call to /GROUP_ID/albums to get the album_id in the Graph API explorer then make a call to /ALBUM_ID to get the photos.
Both of these calls to groups I admin result in OAuth Errors: "(#3) App must be on whitelist"
Whitelisting apps appears to only be possible by a Facebook employee.
You could try manually scraping the album URL as though you were a browser, but this is not supported and could get you and your group banned.

Facebook official icons [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I'm going to develop apps for iOS, Android and Windows Phone that will be connect with Facebook.
I'm searching http://developer.facebook.com but I haven't found official icons for login button, etc. Sometime ago I'm sure they were there, but now I can't find them.
Where I can get official facebook icons?
iOS SDK comes with a FBConnect.bundle but I don't know how to open that file and get its images to use them on the other platforms.
Facebook Brand Resources is the place to get official graphics and how you can use it.
You need to use either self-made/custom images or one of the Facebook logos from "Brand Permissions Center" Facebook Brand Assets.

Any objective-c open source can let me share content to a number of services? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I am going to allow user to share content to their fav services, in my iphone app.
The services I want to integrate include:
twitter
facebook
linkedin
tumblr
evernote
instapaper
etc
Any "One ring to rule them all" open source that I can adopt for this?
I know ShareKit would be a good candidate, but I noticed that it stopped updating since Nov 2010, which is one year ago.
Any suggestions for new such kind of kit?
Thanks
Sharekit is still the best option, but you need to use this version: https://github.com/ShareKit/ShareKit
It is still actively being developed.

Can my app be launched from mail? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I'm working on a new app and would love to have the following feature. If the user is in Apple's Mail, s/he can have the option to open my app.
EDIT: The comments have pointed me to this question, which is perfect for handling attachments, which I also want to do, but I also want the user to be able to copy some text, a date or an e-mail address, and then open my app with that information in tow.
Is there an API set up whereby I can do this?
Thanks!
You can create a custom URL scheme for your app, something like app://path - this is how Facebook handles things, they have URLs like fb://profile/12345.
http://iosdevelopertips.com/cocoa/launching-your-own-application-via-a-custom-url-scheme.html