- (id)init{
self = [super init];
self.view.frame = CGRectMake(0, 0, 320, 480);
[self.view setBackgroundColor:[UIColor whiteColor]];
/*****OAUTHCLIENT SETUP*****/
oauthClient = [[SBOAuth2Client alloc] initWithClientID:@"foo" secret:@"foo" redirectURL:[NSURL URLWithString:@"http://foo.com/"]];
oauthClient.userURL = [NSURL URLWithString:userUrl];
oauthClient.tokenURL = [NSURL URLWithString:tokenUrl];
oauthClient.delegate = self;
/*****WEBVIEW SETUP*****/
webView = [[[UIWebView alloc] initWithFrame:CGRectMake(0, 20, 320, 460)] retain];
[self.view addSubview:webView];
return self;
}