아웅 이거까지 완성하고 그녀랑 놀러가려고 했더니

트위터 연결해서 글 올리는건데 

로그파일에 찍을 땐 잘 되는데

막상 트위터에 안올라간다 ㅠㅠ 

그럼 책이 잘못된건가?

아님 트위터  api가 바뀌었나??

일단 컴파일 에러는 없음

-------소스염----------

//트위터 코드

    NSMutableURLRequest *theRequest = [NSMutableURLRequest requestWithURL:

                              [NSURL URLWithString:@\"http://트위터 아이디:트위터 암호@twitter.com/statuses/update.xml\"]

                                      cachePolicy:NSURLRequestUseProtocolCachePolicy 

                                      timeoutInterval:60.0];

    [theRequest setHTTPMethod:@\"POST\"];

    [theRequest setHTTPBody:[[NSString stringWithFormat:@\"status = %@\", themessage] dataUsingEncoding:NSASCIIStringEncoding]];

    NSURLResponse* response;

    NSError* error;

    NSData* result = [NSURLConnection sendSynchronousRequest:theRequest returningResponse:&response error:&error];

    NSLog(@\"%@\", [[[NSString alloc]initWithData:result encoding:NSASCIIStringEncoding]autorelease]);


엉엉 뭐가 문제 인지 알려주삼 ㅠㅠ