JSON字符串未获得正确的值返回错误

时间:2017-06-20 21:24:05

标签: ios objective-c json twilio twilio-php

我是服务器和twilio的新手,我已经设置了服务器以在我的localhost上正确生成访问令牌。当我使用

生成令牌时
http://localhost/index.php?identity=bob&room=example

生成的令牌在jwt中,我得到正确的令牌,因为如果我直接将它放在应用程序中,我会连接但是当我尝试使用该函数调用它时:

(void)retrieveAccessTokenFromURL:(NSString *)tokenURLStr
                    completion:(void (^)(NSString* token, NSError *err)) completionHandler {
NSURL *tokenURL = [NSURL URLWithString:tokenURLStr];
NSURLSessionConfiguration *sessionConfig = [NSURLSessionConfiguration defaultSessionConfiguration];
NSURLSession *session = [NSURLSession sessionWithConfiguration:sessionConfig];
NSURLSessionDataTask *task = [session dataTaskWithURL:tokenURL
                                    completionHandler: ^(NSData * _Nullable data,
                                                         NSURLResponse * _Nullable response,
                                                         NSError * _Nullable error) {
                                        NSError *err = error;
                                        NSString *accessToken;
                                        NSString *identity;
                                        if (!err) {
                                            if (data != nil) {
                                                NSDictionary *json = [NSJSONSerialization JSONObjectWithData:data
                                                                                                     options:NSJSONReadingAllowFragments
                                                                                                       error:&err];
                                                if (!err) {
                                                    accessToken = json[@"token"];
                                                    identity = json[@"identity"];
                                                    NSLog(@"Logged in as %@",identity);
                                                }
                                            }
                                        }
                                        completionHandler(accessToken, err);
                                    }];
[task resume];

}

它会生成一个错误err -> NSError * domain: @"NSCocoaErrorDomain" - code: 3840 0x1559ef60,我检查它说NSJSONReadingAllowFragments,但它仍然给我同样的错误,而同样的标记在直接放置时效果很好。如果任何人可以帮助我,那将是伟大的。提前谢谢。

修改1

以下是生成的令牌:

eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiIsImN0eSI6InR3aWxpby1mcGE7dj0xIn0.eyJqdGkiOiJTS2I2M2RjMzE2Yjc0ZDdhN2E0YzEyNjYzNDJlNTY2MTcwLTE0OTc5OTIzMTMiLCJpc3MiOiJTS2I2M2RjMzE2Yjc0ZDdhN2E0YzEyNjYzNDJlNTY2MTcwIiwic3ViIjoiQUM5ZTliNDYxZDI4NDkzZWY2ODYwNDMzYzViZWRkOTk0YyIsImV4cCI6MTQ5Nzk5NTkxMywiZ3JhbnRzIjp7ImlkZW50aXR5IjoiYm9iIiwidmlkZW8iOnsicm9vbSI6ImV4YW1wbGUifX19.Ppe85LeD8CFatGXkXgzaTR_ljznXIrpyrb8lu3SR4xo

我在jwt.io上查了一下

 HEADER:ALGORITHM & TOKEN TYPE

{
  "typ": "JWT",
  "alg": "HS256",
  "cty": "twilio-fpa;v=1"
}
PAYLOAD:DATA

{
  "jti": "SKb63dc316b74d7a7a4c1266342e566170-1497992313",
  "iss": "SKb63dc316b74d7a7a4c1266342e566170",
  "sub": "AC9e9b461d28493ef6860433c5bedd994c",
  "exp": 1497995913,
  "grants": {
    "identity": "bob",
    "video": {
      "room": "example"
    }
  }
}
VERIFY SIGNATURE
HMACSHA256(
  base64UrlEncode(header) + "." +
  base64UrlEncode(payload),

secret

) 

此外,当我直接提供此令牌时,连接有效,但通过网址无法正常工作。

网站代码:

    <?php
include('./vendor/autoload.php');
include('./config.php');

use Twilio\Jwt\AccessToken;
use Twilio\Jwt\Grants\VideoGrant;

// Use identity and room from query string if provided
$identity = isset($_GET["identity"]) ? $_GET["identity"] : "identity";
$room = isset($_GET["room"]) ? $_GET["room"] :  "";


// Create access token, which we will serialize and send to the client
$token = new AccessToken(
    $TWILIO_ACCOUNT_SID, 
    $TWILIO_API_KEY, 
    $TWILIO_API_SECRET, 
    3600, 
    $identity
);

// Grant access to Video
$grant = new VideoGrant();
$grant->setRoom($room);
$token->addGrant($grant);

echo $token->toJWT();

1 个答案:

答案 0 :(得分:1)

Twilio开发者传道者在这里。

在服务器端代码中,您将返回一个简单的字符串,而不是JSON。

您现在有两种选择。您可以将返回的data转换为NSString,这将是您的令牌。这不包括您的身份,但您目前正在登录。要获得标识,您可以更改服务器的返回值,以使用令牌和标识实际返回JSON。然后你的JSON解析代码应该可以工作。

对于选项1,您需要将NSData变为NSString。你应该能够这样做:

NSString *accessToken = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];

对于替代方案,您可以保留JSON解析代码并从服务器返回JSON,将PHP的最后几行更改为:

$grant = new VideoGrant();
$grant->setRoom($room);
$token->addGrant($grant);

$data = array('identity'=>$identity, 'token'=>$token->toJWT());
header('Content-type: application/json');
echo json_encode($data);

让我知道这是否有帮助。