This is late - I missed saying that it is for Objective-c on an
iPhone:
NSURL* url = [NSURL URLWithString:[NSString stringWithFormat:@"http://
%@/?auth=%@", @def_url, strToken]];
NSMutableURLRequest* request = [[NSMutableURLRequest alloc]
initWithURL:url];
[request setHTTPMethod:@"GET"];
//[request setHTTPBody:@"my http body"];
NSURLConnection *connectionResponse = [[NSURLConnection alloc]
initWithRequest:request delegate:self];
if (!connectionResponse) {
NSLog(@"Failed to submit request");
} else {
NSLog(@"Request submitted");
}
On Apr 3, 3:52 am, "[email protected]" <[email protected]> wrote:
> Hi there!
>
> How to connect to Google App Engine seems like a mystery.
>
> First, can you use Google Data API?
> If not, then it must be the clientLogin - and I am unable to make it
> work with clientLogn. I wounder if anybody have don it?
>
> The steps are:
> 1) Get a token
> 2) Get a cookie - for what ever reason?
> 3) Provide any further calls to the appspot.com with the token
>
> I can get the token, but then it is end of story!
>
> Thanks in advance!
>
> Regards
> Christian
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google App Engine" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/google-appengine?hl=en
-~----------~----~----~----~------~----~------~--~---