Helpshift

helpshiftというユーザーサポートをチャット形式で出来るようにしてくれるサービスがあったので試してみました。

https://www.helpshift.com

  1. ユーザー登録
  2. API_KEY, DOMAIN, APP_IDの取得
  3. SDKの導入

  4. SDKは以下の種類のものが用意されています。

  5. iOS
  6. Android
  7. Unity
  8. Cocos2d-x
  9. PhoneGap

  10. SDKでできること

  11. In-app Messaging

f:id:nkmrh:20140604185425p:plain

  • Showing a Particular FAQ Section

f:id:nkmrh:20140604185433p:plain

  • Showing a Particular FAQ Question

f:id:nkmrh:20140604185437p:plain

  • Skinning the Helpshift SDK to match the look-n-feel of your app

f:id:nkmrh:20140604185441p:plain

  • Customize localizable strings to support multiple languages in the SDK UI.
  • Push and In-app notifications
  • Track events and user actions when the user starts a new conversation.
  • Asking for reviews and feedback

f:id:nkmrh:20140604185421p:plain

・質問を送信する為のチャット画面を表示するコード


- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    [Helpshift installForApiKey:@"xxxxxxxxxxx"
                     domainName:@"xxxxxxxxxxx"
                          appID:@"xxxxxxxxxxx"];
    
    // NOTE: This is just an empty window & a view controller to demo the showConversation API call
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
    self.window.backgroundColor = [UIColor whiteColor];
    self.window.rootViewController = [[UIViewController alloc] init];
    [self.window makeKeyAndVisible];
    // You can get rid of the above 4 lines once done testing Helpshift SDK
    
    
    // NOTE: Move the line below to wherever you would like the Helpshift chat screen
    // to open. E.g. a contact button in your app settings
    [[Helpshift sharedInstance] showConversation:self.window.rootViewController
                                     withOptions:nil];
    return YES;
}

SDKのチャット画面

f:id:nkmrh:20140604185357p:plain

・チャット画面から質問を送ると、helpshiftからメールが届く

f:id:nkmrh:20140604185446p:plain

・管理画面もチャット形式になっていて、対応した人・デバイスの種類・OSバージョンなどが自動で表示される。またメモやタグをつけて管理できる。

f:id:nkmrh:20140604185450p:plain

管理ページからサクッとFAQページが作成できる

f:id:nkmrh:20140604185416p:plain

価格はMAUに応じたプラン制

プラン名 MAU 価格
Starter 20,000 $20/月
Pro 100,000 $100/月
Growth 500,000 $500/月

所感

  • 従来の問い合わせメールよりチャット形式の方が確かに質問しやすい
  • この形式なら気軽に質問して、問題解決までが素早くできる
  • レビュー欄に不満を書かれるのを防げそう
  • サポート体制の整っていない、小規模アプリの場合、有効そう
  • Q&Aで細かい操作方法のTipsなどを書くと良さそう

サンプルコード
https://github.com/sraj/helpshift-ios-sdk-examples