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.

Hi i am working on an application in which i need to upload a you-tube uploaded video on Facebook using URL or we can say i want to post an URL on Facebook.I have integrated Facebook into my application and i can upload photos on Facebook wall but not able to upload video by URL.

Please help me if any one knows

share|improve this question

1 Answer

up vote 0 down vote accepted

well, it sound like you have the Graph API up and running?

In that case simply post your URL as a massage like this:

-(void)postMessageOnUsersWall:(NSString*)msg
{
    NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                                   msg, @"message", // The status message
                                   nil];

    [self.facebook requestWithGraphPath:@"me/feed" andParams:params andHttpMethod:@"POST" andDelegate: self];
}
share|improve this answer
Hey thanks for the reply but i have tried this and still it is not uploading URL on facebook users wall. I have changed msg to URL as a string type but it is not uploading – sabya Jun 28 '12 at 5:57
Hi sabyasachi, If you could provide some code it would be easier to see what the problem is. – Cipramill Jun 28 '12 at 9:49

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.