1

我创建了一个随行应用程序并尝试使用 GN_Entourage_Demo。但是,尽管我将许可证信息放入其中,但GNViewController.m它会产生如下错误:

2013-09-18 13:26:01.682 GN_Entourage_Demo[1583:11f03] getUserACR: ERROR: User Create New: client id '1551360' not supported by current license 2013-09-18 13:26:01.683 GN_Entourage_Demo[1583:11f03] Error: Invalid User

4

1 回答 1

1

如果 1551360 是您正确的客户端 ID,请确保它是应用程序正在加载的许可证中指定的 ID。

这些应该在 GNViewController.m 文件中指定:

/*** Enter your client id, client tag, and license info here ***/
#define CLIENT_ID  @""
#define CLIENT_TAG  @""
#define LICENSE_INFO  @""

如果 1551360不是您在此处定义的 ID,可能是应用程序正在尝试加载以前序列化的用户?调试器应该有助于确定这一点。

于 2013-09-30T15:52:09.887 回答