I play a game on Facebook which requires purchasing items with playfish cash, I was wondering if Fiddler would be able to modify the url in order to send the items to friends.
I'm new at this, and I can't seem to find the documentation that explains this. But I want to create a Facebook page, where you can send POST data to an external server, preferably with AJAX.
Can someone please point me in the right direction, as I'm stumbling blind.
Facebook has a "Dom Placeholder" on their Password field when logging on. When I click on the input for the password, the placeholder disappears and allows me to type my password "masked".
Is this Javascript related and how would I go on replicating this script?
I am getting error but empty statusText, here is my code
var ajaxUrl = 'https://graph.facebook.com/me?access_token=' + accessToken
$.ajax({
url: ajaxUrl,
dataType: 'json',
success: function(user){
alert('h');
},
error: function(xhr, ajaxOptions, thrownError){
alert(xhr.statusText);
}
});
Hi all,
Is any one have an idea to how to implement a password protected PDF file in iphone sdk. I mean to I need to create a password pdf file from my application.Please help me.
Any one's help will be much appreciated.
Is there going to be a way with the 4.0 SDK to create a tool similar to Pandora(which was demoed today), so when the phone is locked, I can manipulate my app? So basically if my app was running, and my phone locks I don't have to unlock the phone to toggle something for the app?
Looking to run through something very similar to (http://www.emcro.com/blog/2009/01/facebook-infinite-session-keys-no-more/) but using javascript instead. Any ideas on how to accomplish this?
When a user gets to this screen, there is no way to cancel out of it. What can I do?
To get this view in the first place I am running:
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
vid, @"link",
vid, @"source",
vid, @"picture",
@"My Place", @"name",
@"YouTube Presentation", @"caption",
title, @"description",
@"Enjoy this Video", @"message",
nil];
[app.facebook dialog:@"stream.publish"
andParams:params
andDelegate:self];
How to do it? Any sample code would be nice ... I have tried directly using the graph api but it needs access_token and I don't know how to get it ... I am using Facebook developer toolkit
Hi all,
Does anyone hv some gud tutorials to implement facebook in our app.
having a button to call fb. something like dat.
w8ing curiously for a reply
regards
shisihr
My .Net application needs to convert PDF document to word format pro-grammatically.
I evaluated several products and found acrobat x pro , which gives a save as option where we can save the document in word/excel format. I tried to use Acrobat SDK but couldn't find proper documentation from where to start. looked into their IAC sample but couldn't understand how to call the menu item and make it execute the save as option. Please help me if you have any idea regarding this.
Hi all,
My desktop application should update my facebook status.
Is there an API that allows to update the status with a login and pwd ?
Thanks in advance for your answer
Does anyone know the general layout of how facebook's privacy permissions system works (database)? I've been trying to figure out how they manage to have such a complex set of rules be applied to various content on their site, yet it remains fast. How are they doing that?
Hi,
I made story book with iphone sdk . I created different views by coding. When user read story book I want to know that currently which view is read by user because I want to store value of current view and If user closed the application and start again at a time user can read from current.
So guide me about the problem.
Thanks !
Is there a way to circumbent google app engine sdk to allow the usage of classes that are not present in the GAE JRE white list? I know the app that I would be building will not run in appspot, but at least in my development server, I need to access a postgresql database(java.net.socket.*) and generate some files(java.io.FileWriter) in my development server.
can authentication for facebook be done without a web browser in qt? the way i want to authenticate is to enter a username and password in text boxes and pass it as parameters in the url? is it possible? please help. thanks in advance.
pretty much all the tutorials I found on authenticating users using Facebook, make use of a new window which I find to be an ugly solution. But www.zoho.com on the other hand does this much like the way that OpenID works. Can someone tell give detailed instructions on how Zoho does this?
Is there a way to determine if the current user is a fan (now: likes the page) using facebook connect?
I know this is possible in the REST api, but I would like to be able to just use connect instead.
still i tried but i m not able to handle unknown call is it possible in sdk 2.0 ,iwant to stop calling from unknown number....is it possible.. if then plz give direction for it
This morning our game is not working on my computer under IE9. The error I get is:
access denied on
http://static.ak.fbcdn.net/rsrc.php/v1/yL/r/X3oFUDWWu05.js
When I load this URL in Chrome, FF, and IE 8, everything works fine. But under IE9 I have the following error:
'window is undefined'
Error : 800A1391
Execution Error Microsoft JScript
This is a Facebook script that I have no control over. I've cleared my cache but still get the error.
Any ideas?
I was wondering if it's possible to make a user attend an event through the sdk (probably fql).
I've been looking at the wiki for FQL info as well as the graph api. But both look like they only support fetching info and not changing...
Any suggestions? I would like to build this feature into an application....
Hi Guys,
I am new to facebook application development.My question is:do I have to have a server to make the development?Could I do it on my own local machine and try it out?
Thanks for your advice.
In the Facebook API (REST), how do you like a photo? There's a stream.addLike function, but you need the post_id, and I don't see a way to get the post_id of a photo (not the same as the pid or the object_id).