gpt4 book ai didi

ios - 如何在 iOS Objective C 中向 Rest Web 服务请求添加 token

转载 作者:行者123 更新时间:2023-11-29 01:23:28 25 4
gpt4 key购买 nike

我有一个要在 Objective C 中调用的 rest Web 服务请求。如何将 token 添加到 Web 服务请求以进行身份​​验证??

提前致谢

最佳答案

如下在请求中添加token

NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:yourURL] cachePolicy:NSURLRequestUseProtocolCachePolicy timeoutInterval:60.0];
[request setHTTPMethod:@"GET"]; // Set your method
[request addValue:@"token_value" forHTTPHeaderField:@"Authorization"];
// ...... your code
// ........ add data

NSURLSession *session = [NSURLSession sharedSession];
NSURLSessionDataTask *task = [session dataTaskWithRequest:request completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {

//HideProcess;
if (error)
{
//NSLog(@"Error : %@\n", error);
return;
}

if (data != nil)
{
NSDictionary *dict = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableContainers error:&error];
NSLog(@"Response :\n%@\n", dict);
}
}];
[task resume];

关于ios - 如何在 iOS Objective C 中向 Rest Web 服务请求添加 token ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34313608/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com