最近搜索
没有最近搜索

Mirza P.
已加入2021年12月08日
·
最后活动2021年12月17日
关注
0
关注者
0
活动总数
3
投票
0
订阅
2
活动概览
标记
文章
帖子
社区评论
文章评论
活动概览
的最新活动 Mirza P.
Mirza P. 创建了一个帖子,
帖子 Developer - Zendesk SDKs
I've enabled Help Center for my Mobile SDK, and I have articles published (and they show up when you go to the help center webpage). However, when I try to open Help Center through iOS mobile SDK, it just opens up a page that says "No Articles Found".
This is the code I have to open it:
UIViewController *helpCenter = [ZDKHelpCenterUi buildHelpCenterOverviewUiWithConfigs:@[]];
UIViewController *topController = [UIApplication sharedApplication].keyWindow.rootViewController;
while (topController.presentedViewController) {
topController = topController.presentedViewController;
}
UINavigationController *navControl = [[UINavigationController alloc] initWithRootViewController:helpCenter];
[topController presentViewController:navControl animated:YES completion:nil];
And this is my initialization code:
[ZDKZendesk initializeWithAppId:appId
clientId:clientId
zendeskUrl:url];
[ZDKSupport initializeWithZendesk: [ZDKZendesk instance]];
[ZDKAnswerBot initializeWithZendesk:[ZDKZendesk instance] support:[ZDKSupport instance]];
[ZDKChat initializeWithAccountKey:channelKey queue: dispatch_get_main_queue()];
I've tried opening a specific section and article, and neither works. I can't figure out if I'm misconfigured something, but opening help center through website works fine so it seems good?
Any help would be appreciated. Let me know if there is more info I can provide.
Thanks,
Mirza
已于 2021年12月08日 发布 · Mirza P.
0
关注者
1
投票
0
评论