-
Notifications
You must be signed in to change notification settings - Fork 8
BVConversations
This page describes the minimum BVSDK configuration in your iOS project so you can being to use the Conversations API in your aplications. A more in-depth, step-by-step tutorial is provided in BVConversations Tutorial.
Include the following header in your project:
#include <BVSDK/BVSDK.h>Then add the following to your AppDelegate's didFinishLaunchingWithOptions function.
[BVSDKManager sharedManager].staging = YES; // set to NO for production!
[BVSDKManager sharedManager].clientId = @"YOUR_CLIENT_ID";
[BVSDKManager sharedManager].apiKeyConversations = @"YOUR_CONVERSATIONS_API_KEY";
[[BVSDKManager sharedManager] setLogLevel:BVLogLevelError]; // Default is BVLogLevelErrorAdd the following to your Objective-C Bridging Header:
#include <BVSDK/BVSDK.h>Then add the following to your AppDelegate's didFinishLaunchingWithOptions function.
BVSDKManager.sharedManager().staging = true // Set to false for production!
BVSDKManager.sharedManager().clientId = "YOUR_CLIENT_ID"
BVSDKManager.sharedManager().apiKeyConversations = "YOUR_CONVERSATIONS_API_KEY"
BVSDKManager.sharedManager().setLogLevel(BVLogLevel.Error) // Default level is ErrorYour app is not configured to use the Conversations API for retrieving and posting product review content!
Copyright 2016 Bazaarvoice Inc. All rights reserved.
Use of this SDK is contingent on your agreement and conformance with Bazaarvoice's API Terms of Use. Additionally, you agree to store all data acquired by this SDK or Bazaarvoice’s API only within the storage of the individual application instance using the SDK or API. You also agree to use the data acquired by the SDK or API only within the context of the same individual application instance and only for purposes consistent with that application’s purpose. Except as otherwise noted, the Bazaarvoice iOS SDK licensed under the Apache License, Version 2.0.