0

我正在尝试使用 Passslot 的 API 在我的应用程序中创建新的通行证。如示例所示,我执行了以下操作:

[PassSlot start:[[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleIdentifier"]]];

NSDictionary *values = [NSDictionary dictionaryWithObjectsAndKeys:
                            @"John", @"firstName" ,
                            @"Doe", @"lastName",
                            @"2012", @"memberSince", nil];

[PassSlot createPassFromTemplateWithName:@"Member Card" withValues:values
    andRequestInstallation:self completion:^{
    NSLog(@"PassSlot is SO EASY!");
}];

应用程序不会抛出任何错误,只是没有创建传递本身(因此也没有调用回调函数)。我认为 PassSlot 的开头不正确。有人知道如何获取“应用程序密钥”吗? http://www.passslot.com/

4

1 回答 1

1

您需要在网站上注册,以便获得 API 密钥并上传您自己的 Passkit 证书。

于 2013-10-22T14:29:26.840 回答