Featured post

c# - Usage of Server Side Controls in MVC Frame work -

i using asp.net 4.0 , mvc 2.0 web application. project requiremrnt have use server side control in application not possibl in noraml case. ideally want use adrotator control , datalist control. i saw few samples , references in codepleax mvc controllib howwver found less useful. can tell how utilize theese controls in asp.net application along mvc. note: please provide functionalities related adrotator , datalist controls not equivalent functionalities thanks in advace. mvc pages not use normal .net solution makes use of normal .net components impossible. a normal .net page use event driven solution call different methods service side mvc use actions , view completly different way handle things. also, mvc not use viewstate normal .net controlls require. found article discussing mixing of normal .net , mvc.

iphone - How to post on Facebook wall without opening Dialog? -


i trying integrate facebook in app. had done code login , trying post on wall don't need facebook dialog. want own. after googling found code not working. not giving error not posting thing...

here using :

nsmutabledictionary* params = [nsmutabledictionary dictionarywithobjectsandkeys:                                @"facebook developer test message",@"message",                                @"test it!",@"name",                                                                   nil];  facebook *fb = [[facebook alloc] init];     [fb requestwithgraphpath:@"me/feed"   // or use page id instead of 'me'                       andparams:params                   andhttpmethod:@"post"                     anddelegate:self]; 

its not working..

 fbstreamdialog *dialog = [[[fbstreamdialog alloc] init]      autorelease];  dialog.usermessageprompt = @"enter message:";  dialog.attachment = [nsstring    stringwithformat:@"{\"name\":\"facebook connect iphone\",\"href\":\"http://developers.facebook.com/connect.phptab=iphone\",\"caption\":\"caption\", \"description\":\"description\",\"media\":[{\"type\":\"image\",\"src\":\"http://img40.yfrog.com/img40/5914/iphoneconnectbtn.jpg\",\"href\":\"http://developers.facebook.com/connect.php?tab=iphone/\"}],\"properties\":{\"another link\":{\"text\":\"facebook home page\",\"href\":\"http://www.facebook.com\"}}}"];   [dialog show]; 

this opens dialog , ask me type message , when clicks post data on wall.

i had refferes following links

http://forum.developers.facebook.net/viewtopic.php?id=79466

please tell me doing mistake.

thanks

hi think can , can solve problem

nsstring *str=@"your string post";  nsmutabledictionary* params = [nsmutabledictionary dictionarywithobjectsandkeys:                                    str,@"message",                                    @"test it!",@"name",                                                                       nil]; facebook *fb = [[facebook alloc] init];     [fb requestwithgraphpath:@"me/feed"   // or use page id instead of 'me'                           andparams:params                       andhttpmethod:@"post"                         anddelegate:self]; 

Comments

Popular posts from this blog

c# - Usage of Server Side Controls in MVC Frame work -

cocoa - Nesting arrays into NSDictionary object (Objective-C) -

ios - Very simple iPhone App crashes on UILabel settext -