-(void)connection:(NSURLConnection*)connection didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
{
NSURLCredential *myCreds=[[NSURLCredential alloc] initWithUser:@"bigbirdapiuser" password:@"JQi5aPjge7me" persistence:NO];
[challenge.sender useCredential:myCreds forAuthenticationChallenge:challenge];
}