本文整理汇总了Java中com.evernote.client.oauth.YinxiangApi类的典型用法代码示例。如果您正苦于以下问题:Java YinxiangApi类的具体用法?Java YinxiangApi怎么用?Java YinxiangApi使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
YinxiangApi类属于com.evernote.client.oauth包,在下文中一共展示了YinxiangApi类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: createService
import com.evernote.client.oauth.YinxiangApi; //导入依赖的package包/类
/**
* Create a Scribe OAuthService object that can be used to
* perform OAuth authentication with the appropriate Evernote
* service.
*/
@SuppressWarnings("unchecked")
private OAuthService createService() {
OAuthService builder = null;
@SuppressWarnings("rawtypes")
Class apiClass = null;
String host = mSelectedBootstrapProfile.getSettings().getServiceHost();
if (host != null && !host.startsWith("http")) {
host = "https://" + host;
}
if (host.equals(EvernoteSession.HOST_SANDBOX)) {
apiClass = EvernoteApi.Sandbox.class;
} else if (host.equals(EvernoteSession.HOST_PRODUCTION)) {
apiClass = EvernoteApi.class;
} else if (host.equals(EvernoteSession.HOST_CHINA)) {
apiClass = YinxiangApi.class;
} else {
throw new IllegalArgumentException("Unsupported Evernote host: " +
host);
}
builder = new ServiceBuilder()
.provider(apiClass)
.apiKey(mConsumerKey)
.apiSecret(mConsumerSecret)
.callback(getCallbackScheme() + "://callback")
.build();
return builder;
}
示例2: createService
import com.evernote.client.oauth.YinxiangApi; //导入依赖的package包/类
/**
* Create a Scribe OAuthService object that can be used to perform OAuth
* authentication with the appropriate Evernote service.
*/
@SuppressWarnings("unchecked")
private OAuthService createService() {
OAuthService builder = null;
@SuppressWarnings("rawtypes")
Class apiClass = null;
String host = mSelectedBootstrapProfile.getSettings().getServiceHost();
if (host != null && !host.startsWith("http")) {
host = "https://" + host;
}
if (host.equals(EvernoteSession.HOST_SANDBOX)) {
apiClass = EvernoteApi.Sandbox.class;
} else if (host.equals(EvernoteSession.HOST_PRODUCTION)) {
apiClass = EvernoteApi.class;
} else if (host.equals(EvernoteSession.HOST_CHINA)) {
apiClass = YinxiangApi.class;
} else {
throw new IllegalArgumentException("Unsupported Evernote host: "
+ host);
}
builder = new ServiceBuilder().provider(apiClass).apiKey(mConsumerKey)
.apiSecret(mConsumerSecret)
.callback(getCallbackScheme() + "://callback").build();
return builder;
}
示例3: createService
import com.evernote.client.oauth.YinxiangApi; //导入依赖的package包/类
/**
* Create a Scribe OAuthService object that can be used to
* perform OAuth authentication with the appropriate Evernote
* service.
*/
@SuppressWarnings("unchecked")
private OAuthService createService() {
OAuthService builder = null;
@SuppressWarnings("rawtypes")
Class apiClass = null;
String host = mSelectedBootstrapProfile.getSettings().getServiceHost();
if (host != null && !host.startsWith("http")) {
host = "https://" + host;
}
if (host.equals(EvernoteSession.HOST_SANDBOX)) {
apiClass = EvernoteApi.Sandbox.class;
} else if (host.equals(EvernoteSession.HOST_PRODUCTION)) {
apiClass = EvernoteApi.class;
} else if (host.equals(EvernoteSession.HOST_CHINA)) {
apiClass = YinxiangApi.class;
} else {
throw new IllegalArgumentException("Unsupported Evernote host: " +
host);
}
builder = new ServiceBuilder()
.provider(apiClass)
.apiKey(mConsumerKey)
.apiSecret(mConsumerSecret)
.callback(getCallbackScheme() + "://callback")
.build();
return builder;
}