Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

how can i get all test console of facebook like API test console.this one think AND another is but it is not woking help me here is code for getuser name

- (void)getUserName {
    NSString* fql = @"select name from user where uid == 1234";
    NSDictionary* params = [NSDictionary dictionaryWithObject:fql forKey:@"query"];
    [[FBRequest requestWithDelegate:self] call:@"facebook.fql.query" params:params];
}

here is code for request

- (void)request:(FBRequest*)request didLoad:(id)result {
    NSArray* users = result;
    NSDictionary* user = [users objectAtIndex:0];
    NSString* name = [user objectForKey:@"name"];
    NSLog(@"Query returned %@", name);
}

//here is code for askPermission

-(void)askPermission:(id)target
{
    FBPermissionDialog *dialog =[[[FBPermissionDialog alloc]init]autorelease];
                                 dialog.permission = @"status_update";
                                 [dialog show];
}

///here is code for publishFeed

-(void)publishFeed:(id)target
{
    FBFeedDialog *dialog = [[[FBFeedDialog alloc]init]autorelease];
    dialog.templateBundleId = ;----->here i didn't get the               templateBundleId
    dialog.templateData=@"{\"key1\":\"value1\"}";
    [dialog show];
}

help me out

share|improve this question
1  
accept answers first otherwise, noone cares – vodkhang Jul 16 '10 at 6:27
An please formulate a decent question, explain your code, explain the problems you encounter, the efforts that you have undertaken so far, whether this is homework or not... This a community not a service. – Jens Gustedt Jul 16 '10 at 6:43
@vodkhang sorry, I flagged your comment (thought the OP was a new user--didn't see their long history asking dead questions) – STW Jul 22 '10 at 18:37

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.