我正在尝试使用 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/