そのため、ios アプリからサーバーへの GET 要求を行います。私が得る応答は空の配列ですが、いくつかのデータが必要です。私は同じURLにCurlを使用しています(ログからコピーして貼り付けます)。データが返されるので、おそらく私のアプリです。しかし、URL を変更して応答をログに記録しようとすると、アプリが正常であることを示す応答が返されます。今、私は何をすべきかわかりません。
私のサーバーは Rails アプリケーションです。コードは次のとおりです。
def search
@query = params[:user]
q="%#{@query}%"
users = []
@users = User.where("username like ?", q)
for user in @users
if (user.avatar)
users << {username: user.username, avatar: user.avatar.image.thumbnail_dp}
else
users << {username: user.username, avatar: ""}
end
end
respond_to do |format|
format.json {render :json => users.to_json }
end
end
これが私のobjective-cコードです
-(void)getFriends:(NSString *)query{
Keychain *keychain = [[Keychain alloc]init];
NSString *authToken = [keychain getAuthToken];
NSString *url = @"http://url.json";
NSString *urlString = [NSString stringWithFormat:@"%@?user=%@", url, query ];
NSURL *main_url = [NSURL URLWithString:urlString];
NSLog(@"url = %@", main_url);
self.remote_response = [[NSMutableData alloc] init];
NSMutableURLRequest *request = [[NSMutableURLRequest alloc]init];
[request setURL: main_url];
[request setHTTPMethod:@"GET"];
[request setValue:@"application/json" forHTTPHeaderField:@"Content-type"];
[request setValue:@"application/json" forHTTPHeaderField:@"Accept"];
[request setValue:authToken forHTTPHeaderField:@"X-AUTH-TOKEN"];
NSLog(@"request ===%@", request);
self.remote_connection = [[NSURLConnection alloc] initWithRequest:request delegate:self];
[self.remote_connection start];
[UIApplication sharedApplication].networkActivityIndicatorVisible = YES;
}
デリゲート メソッドは次のとおりです。
- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response{
[self.remote_response setLength:0];
NSLog(@"DID RECEIVE RESPONSE");
}
- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error {
UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"Error"
message:(@"Could not get friends with error %@", error)
delegate:self
cancelButtonTitle:@"Ok"
otherButtonTitles:nil , nil];
[alert show];
}
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)d {
[self.remote_response appendData:d];
NSLog(@"Did receive data");
}
- (void)connectionDidFinishLoading:(NSURLConnection *)connection {
NSError *error;
NSString *responseText = [[NSString alloc] initWithData:self.remote_response
encoding:NSUTF8StringEncoding];
NSData *data = [responseText dataUsingEncoding:NSASCIIStringEncoding];
NSLog(@"Response ==> %@", responseText);
NSDictionary *responseDictionary = [NSJSONSerialization JSONObjectWithData:data
options:NSJSONReadingMutableContainers error:&error];
if([responseDictionary count]>0){
NSLog(@"Response::::%@", responseDictionary);
}
[UIApplication sharedApplication].networkActivityIndicatorVisible = NO;
}
ここに私が得るNSURLResponseログがあります
DID RECEIVE RESPONSE
Did receive data
Response ==> []
編集::: 何かを見つけました。パラメータが設定されていません NSLog を作成すると、パラメータが表示される理由がわかりません。
カールした場合のログは次のとおりです
2013-09-05T07:30:58.222613+00:00 app[web.1]:Started GET "/search.json?user=heeman" for 58.137.173.76 at 2013-09-05 07:30:58 +0000
2013-09-05T07:30:58.428178+00:00 app[web.1]: Processing by UsersController#search as JSON
2013-09-05T07:30:58.428178+00:00 app[web.1]: Parameters: {"user"=>"heeman"}
2013-09-05T07:30:58.428178+00:00 app[web.1]: Completed 200 OK in 200ms (Views: 0.1ms | ActiveRecord: 7.5ms)
これが私のiOSクライアントのログです
2013-09-05T07:35:35.766319+00:00 app[web.1]: Started GET "/search.json?user=heeman" for 58.137.173.76 at 2013-09-05 07:35:35 +0000
2013-09-05T07:35:35.778962+00:00 heroku[router]: at=info method=GET path=/search.json?user=heeman host="host" fwd="58.137.173.76" dyno=web.1 connect=1ms service=51ms status=304 bytes=0
2013-09-05T07:35:35.773667+00:00 app[web.1]: Processing by UsersController#search as JSON
2013-09-05T07:35:35.773667+00:00 app[web.1]: Parameters: {"user"=>{}}
2013-09-05T07:35:35.773667+00:00 app[web.1]: Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 1.2ms)
ログに表示される場合、URL にはパラメーターが表示されますmethod=GET path=/search.json?user=heeman
が、Parameters: {"user"=>{}}