New answers tagged
facebook
0
No, it isn't possible. You must link to external or if you don't wan't redirect users outside FB - create a facebook tab application which will embed viewer. You can pass arguments to facebook tab using app_data parameter.
0
Maybe you should switch to FB JS SDK and FB.login() method? It always provides the best user experience.
https://developers.facebook.com/docs/reference/javascript/FB.login/
0
-(void)postToFacebookAppPage
{
NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
@"##########...", @"app_id",
//@"http://www.facebook.com/pages/AppPageURL", @"link",
//@"icon.png", @"picture",
...
0
You can pass an argument to edge.create callback, which is full like url -
FB.Event.subscribe('edge.create',
function(response) {
if(response == 'http://ubuntu.com') alert('liked ubuntu.com');
if(response == 'http://bing.com') alert('liked bing.com');
if(response == 'http://google.com') alert('liked google.com');
}
);
...
0
No, you can't filter users in facepile, you can't event get list of fanpage fan using API.
https://developers.facebook.com/docs/reference/plugins/facepile/
0
If you're only going to query publicly accessible videos use your App Access token. Unlike an access token you obtain from a user, your app access token will not expire unless you reset your secret key. Take a look at this: https://developers.facebook.com/docs/opengraph/howtos/publishing-with-app-token/
0
I also had this issue. What happened is that on my iPhone I had two email addresses in conflict, and had to go through my phone to find the email addy's that I no longer used. Thank you to Charlie, you set me on the right path. My problem was with Instagram not posting to FB. Thanks!
0
this is the simplest code for doing this
public final void launchFacebook() {
final String urlFb = "fb://page/"+yourpageid;
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse(urlFb));
// If a Facebook app is installed, use it. Otherwise, launch
// a browser
final PackageManager ...
0
All user IDs are unique and do not change (and are also public information).
If you want to find out the ID of the current user that's logged in, make a graph request for "/me", or use this method:
https://developers.facebook.com/docs/reference/ios/3.5/class/FBRequestConnection#startForMeWithCompletionHandler%3A
And look for the "id" property in the ...
0
See this page on how to properly handle errors:
https://developers.facebook.com/docs/reference/api/errors/
Code 4 looks like you're being throttled because you're making too many requests.
0
I have been running into the same issue.. Your code looks correct, however there are 2 things that could be influencing the URL that is being liked.
If you have any OpenGraph tags that specify the URL, Facebook will use that URL over the href tag on the like button code.
<meta property="og:url" content="https://www.captap.com/blog" />
If you have a ...
0
I'm assuming you're not using the same names as the facebook resources (you can look inside the FacebookSDK project's res directory to see what names are used - but they should be namespaced to avoid clashes).
You may need to do a clean/rebuild when you add new resources, especially when you're including libraries that also have resources. This is because ...
0
While not the most optimal way to do it, you could try a workaround by just sending a search and parsing the results:
http://www.facebook.com/search/results.php?q=<email address here>
You're also subject to any particual privacy settings users have set up for themselves as far as being searchable, but in lieu of no other way ...
1
It's possible.
Goto https://developers.facebook.com/apps/
Select you application.
Click Edit App
Click Developer Roles
Add new user as administrator.
Remove the current user.
0
If you have logged in successfully, calling response.email will return the user's email address.
0
I think you cannot control it.
You are executing an async request that is a request that "permits other processing to continue before the transmission has finished." (see Wikipedia page).
You have to wait until the onCompleted method is called by the request object.
0
You can see the lifetime number of followers (by likes to your FB page) by country using an FQL query. Set up a JSON query using the tokenized session value, and send an FQL query through via PHP with the object_ID of the page you are targeting and period of lifetime. select metric, and set the metric to page_fans_country - and dump the data into a CSV file. ...
0
I had this same issue. I've submitted a bug to facebook. Vote it up - https://developers.facebook.com/bugs/483624361705934
0
This isn't immediately noticeable from your screenshots, but I believe you want the that header toolbar to slide up as the user scrolls, right? (I'd suggest clarifying on that part)
You can do this a few ways, and in all of them you will have to implement your own scrolling logic, meaning how much the header toolbar slides up depending on where you have ...
0
If you have properly set the delegate, your table will call scrollViewDidScroll: when scrolled.
So in your controller, you can add something like :
- (void)scrollViewDidScroll:(UIScrollView *)scrollView {
if (scrollView.contentOffset.y >0) //means that the user began to scroll down the table
{
[UIView animateWithDuration:0.4 ...
1
Facebook doesn't provide feeds for groups, however there are services that use the Facebook API to create RSS feeds. These are two of them that I found:
http://www.wallflux.com/
https://apps.facebook.com/groups_to_rss/
1
Why not create a Facebook app and use App Access Token to retrieve the feed for the Public pages.
Though you might get feed of some pages without app access token or response for different end points without access_token, but as the Facebook's API is constantly changing, and would finally settle with authorized request to their end points, I would suggest ...
0
Please check below link its describe the step-by-step process.
http://developers.facebook.com/docs/tutorials/ios-sdk-games/requests/
Hope its usefull for you
0
When the User logs off from Facebook the User is not logged out of your application. Both Facebook and your application do not share common common sessions. But when the logout from your application is triggered, it also logs out the User from Facebook.
0
You cannot do that because posts are grouped by Facebook algorithms.
0
Did you try to URLEncode the "q" parameter value ?
Something like :
String query = SELECT page_id from place WHERE (distance(latitude, longitude,"xxxxx","xxxxx") < xxxx)&access_token=<MY ACCESS TOKEN>;
String urlString = "https://graph.facebook.com/fql?q=" + URLEncoder.encode(query, "UTF-8"));
connection = (URLConnection) new URL(urlString ...
0
There's a good chance that facebook isn't the problem. run
$ find . | grep -v .svn | grep "\.a" | grep -v "\.app" | xargs grep uniqueIdentifier
in the project folder. The out put was something to do with Accounts?
I believe that your problem is the Accounts framework. If it's not used in your project just remove it.
1
You can record in a server (google app engine for example) all the users that have installed your app with the Facebook id, then you do a request to get a list of your Facebook friends ID's, then you do you compare which ID is in both list and you got them.
2
AFAIK this image will be valid forever, or at least until the user decides to delete it. After all it´s a static url.
BUT: if you want it to stay up-to-date with the actual user picture, you can always use the graph url of the user:
http://graph.facebook.com/[user-id]/picture?type=square
0
Using CodeIgniter OAuth2/0.4.0 sparks,
in Auth.php file,
$user = $provider->get_user_info($token);
$friends = $provider->get_friends_list($token);
print_r($friends);
and in Facebook.php file under Provider, add the following function,
public function get_friends_list(OAuth2_Token_Access $token)
{
$url = ...
0
NSDictionary *dirTemp; NSStringEncoding encoding; NSString *strUrl = [NSString stringWithFormat:@"graph.facebook.com/%@/…; NSURL *url = [NSURL URLWithString:[strUrl stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]]; NSString *strResonse = [NSString stringWithContentsOfURL:url usedEncoding:&encoding error:&error]; dirTemp = [strResonse ...
0
I'd suggest going for something that does the exact same thing but with 317 stars on GitHub
https://github.com/meiwin/MWFSlideNavigationViewController
I'm not saying the class you provided doesn't work but it's a lot easier if there's a big community behind the project.
0
Talking of OAuth 2.0 and not stackexchange API's specifically, there is an element of risk in the implicit flow, also called the implicit grant flow. This is because the authorization server sends the access token to your user agent/web browser.
To minimize any damage that could result from this, the access tokens were made short lived. Also, an access ...
0
Try http://kissrobber.github.io/facebook_client_terminal/
The command to do what you want is api me/inbox
To setup this in your Ubuntu/Debian terminal, go to https://github.com/kissrobber/facebook_client_terminal
0
SOLVED!!!
So, the Conclusion: You CAN'T Extend an Invalid Facebook Access Token. Instead, you should Clean your AccessToken and Renew your Facebook Credentials Via Your FBSession.
First I Disconnect from Facebook and clean my token data.
Then I Renew My Credentials for the FBSession
Finally I Try to Reconnect by opening a New Active Session.
Here is my ...
0
Please refer to What is the minimum width and height Of Facebook Open Graph Images?.
The ratio of both height divided by width and width divided by height
(w/h, h/w) cannot exceed 3.0.
Your photo, http://www.hrgp.biz/Uploads/CompanyForTesting_499/NotesReminders/2608chemtec-logo.jpg, 250/65 = 3.84615384615 obviously exceed the maximum ratio:
0
Hi Guilherme Berger you can try this in your controller :
graph = Koala::Facebook::API.new(session[:token])
user = graph.get_object("me")
@friends = graph.get_connections(user["id"], "friends?fields=id,name,link")
session[:token] : contain my token
and in your view for example :
<% @friends.each do |f| %>
<%= link_to ...
0
Hi all figured it out,
Firstly i needed to have:
require 'omniauth-facebook'
not
require 'omniauth/facebook'
in the initializers file and when restarting unicorn do a stop, then start command not a restart command.
0
Facebook caches data for the page for about 12-24 hours. It can be updated by using Facebook's Debug Tool (as Igy points). Could it be the case? Did you try Tool after changing your og data?
1
Have you tried this ? Its the recommended option since the api doesnt allow you to add randomly people with a call.
http://developers.facebook.com/docs/reference/dialogs/friends/
Edit: Here you have the reference for dialogs in android sdk
https://developers.facebook.com/docs/reference/androidsdk/dialog/
0
This one worked for me:
I defined the URL like this:
define('URL_FB','http://'.$_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI']);
and then I echoed like this:
<div class="fb-comments" data-href="<?php echo URL_FB; ?>" data-width="470" data-num-posts="10" data-colorscheme="dark"></div>
Hope to be clear enough. :)
1
First of all you have an Id of Uploaded picture when you are adding this. e.g
var client = new FacebookClient(Access_Token);
JsonObject jsonResponse = client.Get("me/feed") as JsonObject;
string feed_ID = string.Empty;
foreach (var account in (JsonArray)jsonResponse["data"])
{
feed_ID = ...
0
A quick look at your code suggest that the button does not exist when you try to access it:
function updateButton(response) {
var button = document.getElementById('fb-auth');
//there is no element with id fb-auth
console.log("button is now:",button);
Please put some console.log in there like the example above after you've set the button ...
0
If you are not using a plugin then there is two chances for this operation
An action is running in functions.php which posts the post to facebook
Check your functions.php for any facebook posting action.
An RSS feed which is already setup with facebook.
Go Facebook profile > Applications > RSS
1
If it is on the Wordpress side, it has got to be a plugin, or in your theme files -- most likely functions.php. Are you using one of the Open Graph plugins for login? Facebook also uses Open Graph. Is the email you've set up in your Wordpress account the same as your main Facebook email?
On the Facebook side, have you previously set up a website RSS feed? ...
0
Inside onCompleted method put the following code and try:
JSONObject graphResponse = response.getGraphObject().getInnerJSONObject();
fbEmail = null;
try {
fbEmail = graphResponse.getString("email");
} catch (JSONException e) {
e.printStackTrace();
}
You can easily get the user email, try printing this in the console.
It will work ...
0
You need to post a code sample. Its throwing a NULLPointerException which is probably why the Intent is leaking. If you share a snippet we could atleast get an idea where its going wrong
0
Mulkul - you need to have a developer account and create an app on that account for the 'Create a New Bug Report' option to appear.
That appears to be only half the battle, though. I'm attempting to submit a bug report on behalf of my company's app (for which I develop but am not an admin). No matter how many times I copy and paste the name of my company's ...
0
With facebook SDK 3.2 or above we have a facility of FBWebDialogs class that opens a view which already contains the friend(s) list. Pick the friends and send invitations to all of them. No need to use any additional API calls.
Here i have briefly described the resolution step-by-step.
0
I had this same issue and the problem was that I had changed my app settings on Facebook and I guess data was being cached on the device that was preventing Facebook from authorizing the request.
To fix it, I did the following:
Remove my app from Facebook > Account Settings > Apps > Apps you use on facebook.com
Call forge.facebook.logout() in my app to ...
Top 50 recent answers are included








