• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java OAuth类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中io.swagger.client.auth.OAuth的典型用法代码示例。如果您正苦于以下问题:Java OAuth类的具体用法?Java OAuth怎么用?Java OAuth使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



OAuth类属于io.swagger.client.auth包,在下文中一共展示了OAuth类的17个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: configureAuthorizationFlow

import io.swagger.client.auth.OAuth; //导入依赖的package包/类
/**
 * Helper method to configure the oauth accessCode/implicit flow parameters
 * @param clientId Client ID
 * @param clientSecret Client secret
 * @param redirectURI Redirect URI
 */
public void configureAuthorizationFlow(String clientId, String clientSecret, String redirectURI) {
    for(Interceptor apiAuthorization : apiAuthorizations.values()) {
        if (apiAuthorization instanceof OAuth) {
            OAuth oauth = (OAuth) apiAuthorization;
            oauth.getTokenRequestBuilder()
                    .setClientId(clientId)
                    .setClientSecret(clientSecret)
                    .setRedirectURI(redirectURI);
            oauth.getAuthenticationRequestBuilder()
                    .setClientId(clientId)
                    .setRedirectURI(redirectURI);
            return;
        }
    }
}
 
开发者ID:amardeshbd,项目名称:medium-api-android-sample,代码行数:22,代码来源:ApiClient.java


示例2: configureAuthorizationFlow

import io.swagger.client.auth.OAuth; //导入依赖的package包/类
/**
 * Helper method to configure the oauth accessCode/implicit flow parameters
 * @param clientId
 * @param clientSecret
 * @param redirectURI
 */
public void configureAuthorizationFlow(String clientId, String clientSecret, String redirectURI) {
    for(Interceptor apiAuthorization : apiAuthorizations.values()) {
        if (apiAuthorization instanceof OAuth) {
            OAuth oauth = (OAuth) apiAuthorization;
            oauth.getTokenRequestBuilder()
                    .setClientId(clientId)
                    .setClientSecret(clientSecret)
                    .setRedirectURI(redirectURI);
            oauth.getAuthenticationRequestBuilder()
                    .setClientId(clientId)
                    .setRedirectURI(redirectURI);
            return;
        }
    }
}
 
开发者ID:hardsky,项目名称:lucky-calories,代码行数:22,代码来源:ApiClient.java


示例3: initializeApiClient

import io.swagger.client.auth.OAuth; //导入依赖的package包/类
private void initializeApiClient() throws RetrofitError {
    ApiClient apiClient = new ApiClient();

    OAuth auth = new OAuth(new TrustingOkHttpClient(),
            OAuthClientRequest.tokenLocation("https://api.netatmo.net/oauth2/token"));
    auth.setFlow(OAuthFlow.password);
    auth.setAuthenticationRequestBuilder(OAuthClientRequest.authorizationLocation(""));

    apiClient.getApiAuthorizations().put("password_oauth", auth);
    apiClient.getTokenEndPoint().setClientId(configuration.clientId).setClientSecret(configuration.clientSecret)
            .setUsername(configuration.username).setPassword(configuration.password).setScope(getApiScope());

    apiClient.configureFromOkclient(new TrustingOkHttpClient());
    apiClient.getAdapterBuilder().setLogLevel(logger.isDebugEnabled() ? LogLevel.FULL : LogLevel.NONE);

    apiMap = new APIMap(apiClient);
}
 
开发者ID:openhab,项目名称:openhab2-addons,代码行数:18,代码来源:NetatmoBridgeHandler.java


示例4: setCredentials

import io.swagger.client.auth.OAuth; //导入依赖的package包/类
/**
 * Helper method to configure the username/password for basic auth or password oauth
 * @param username Username
 * @param password Password
 */
private void setCredentials(String username, String password) {
    for(Interceptor apiAuthorization : apiAuthorizations.values()) {
        if (apiAuthorization instanceof HttpBasicAuth) {
            HttpBasicAuth basicAuth = (HttpBasicAuth) apiAuthorization;
            basicAuth.setCredentials(username, password);
            return;
        }
        if (apiAuthorization instanceof OAuth) {
            OAuth oauth = (OAuth) apiAuthorization;
            oauth.getTokenRequestBuilder().setUsername(username).setPassword(password);
            return;
        }
    }
}
 
开发者ID:amardeshbd,项目名称:medium-api-android-sample,代码行数:20,代码来源:ApiClient.java


示例5: getTokenEndPoint

import io.swagger.client.auth.OAuth; //导入依赖的package包/类
/**
 * Helper method to configure the token endpoint of the first oauth found in the apiAuthorizations (there should be only one)
 * @return Token request builder
 */
public TokenRequestBuilder getTokenEndPoint() {
    for(Interceptor apiAuthorization : apiAuthorizations.values()) {
        if (apiAuthorization instanceof OAuth) {
            OAuth oauth = (OAuth) apiAuthorization;
            return oauth.getTokenRequestBuilder();
        }
    }
    return null;
}
 
开发者ID:amardeshbd,项目名称:medium-api-android-sample,代码行数:14,代码来源:ApiClient.java


示例6: getAuthorizationEndPoint

import io.swagger.client.auth.OAuth; //导入依赖的package包/类
/**
 * Helper method to configure authorization endpoint of the first oauth found in the apiAuthorizations (there should be only one)
 * @return Authentication request builder
 */
public AuthenticationRequestBuilder getAuthorizationEndPoint() {
    for(Interceptor apiAuthorization : apiAuthorizations.values()) {
        if (apiAuthorization instanceof OAuth) {
            OAuth oauth = (OAuth) apiAuthorization;
            return oauth.getAuthenticationRequestBuilder();
        }
    }
    return null;
}
 
开发者ID:amardeshbd,项目名称:medium-api-android-sample,代码行数:14,代码来源:ApiClient.java


示例7: setAccessToken

import io.swagger.client.auth.OAuth; //导入依赖的package包/类
/**
 * Helper method to pre-set the oauth access token of the first oauth found in the apiAuthorizations (there should be only one)
 * @param accessToken Access token
 */
public void setAccessToken(String accessToken) {
    for(Interceptor apiAuthorization : apiAuthorizations.values()) {
        if (apiAuthorization instanceof OAuth) {
            OAuth oauth = (OAuth) apiAuthorization;
            oauth.setAccessToken(accessToken);
            return;
        }
    }
}
 
开发者ID:amardeshbd,项目名称:medium-api-android-sample,代码行数:14,代码来源:ApiClient.java


示例8: registerAccessTokenListener

import io.swagger.client.auth.OAuth; //导入依赖的package包/类
/**
 * Configures a listener which is notified when a new access token is received.
 * @param accessTokenListener Access token listener
 */
public void registerAccessTokenListener(AccessTokenListener accessTokenListener) {
    for(Interceptor apiAuthorization : apiAuthorizations.values()) {
        if (apiAuthorization instanceof OAuth) {
            OAuth oauth = (OAuth) apiAuthorization;
            oauth.registerAccessTokenListener(accessTokenListener);
            return;
        }
    }
}
 
开发者ID:amardeshbd,项目名称:medium-api-android-sample,代码行数:14,代码来源:ApiClient.java


示例9: setAccessToken

import io.swagger.client.auth.OAuth; //导入依赖的package包/类
/**
 * Helper method to set access token for the first OAuth2 authentication.
 *
 * @param accessToken Access token
 */
public void setAccessToken(String accessToken) {
    for (Authentication auth : authentications.values()) {
        if (auth instanceof OAuth) {
            ((OAuth) auth).setAccessToken(accessToken);
            return;
        }
    }
    throw new RuntimeException("No OAuth2 authentication configured!");
}
 
开发者ID:simplesteph,项目名称:nifi-api-client-java,代码行数:15,代码来源:ApiClient.java


示例10: setCredentials

import io.swagger.client.auth.OAuth; //导入依赖的package包/类
/**
 * Helper method to configure the username/password for basic auth or password oauth
 * @param username
 * @param password
 */
private void setCredentials(String username, String password) {
    for(Interceptor apiAuthorization : apiAuthorizations.values()) {
        if (apiAuthorization instanceof HttpBasicAuth) {
            HttpBasicAuth basicAuth = (HttpBasicAuth) apiAuthorization;
            basicAuth.setCredentials(username, password);
            return;
        }
        if (apiAuthorization instanceof OAuth) {
            OAuth oauth = (OAuth) apiAuthorization;
            oauth.getTokenRequestBuilder().setUsername(username).setPassword(password);
            return;
        }
    }
}
 
开发者ID:hardsky,项目名称:lucky-calories,代码行数:20,代码来源:ApiClient.java


示例11: getTokenEndPoint

import io.swagger.client.auth.OAuth; //导入依赖的package包/类
/**
 * Helper method to configure the token endpoint of the first oauth found in the apiAuthorizations (there should be only one)
 * @return
 */
public TokenRequestBuilder getTokenEndPoint() {
    for(Interceptor apiAuthorization : apiAuthorizations.values()) {
        if (apiAuthorization instanceof OAuth) {
            OAuth oauth = (OAuth) apiAuthorization;
            return oauth.getTokenRequestBuilder();
        }
    }
    return null;
}
 
开发者ID:hardsky,项目名称:lucky-calories,代码行数:14,代码来源:ApiClient.java


示例12: getAuthorizationEndPoint

import io.swagger.client.auth.OAuth; //导入依赖的package包/类
/**
 * Helper method to configure authorization endpoint of the first oauth found in the apiAuthorizations (there should be only one)
 * @return
 */
public AuthenticationRequestBuilder getAuthorizationEndPoint() {
    for(Interceptor apiAuthorization : apiAuthorizations.values()) {
        if (apiAuthorization instanceof OAuth) {
            OAuth oauth = (OAuth) apiAuthorization;
            return oauth.getAuthenticationRequestBuilder();
        }
    }
    return null;
}
 
开发者ID:hardsky,项目名称:lucky-calories,代码行数:14,代码来源:ApiClient.java


示例13: setAccessToken

import io.swagger.client.auth.OAuth; //导入依赖的package包/类
/**
 * Helper method to pre-set the oauth access token of the first oauth found in the apiAuthorizations (there should be only one)
 * @param accessToken
 */
public void setAccessToken(String accessToken) {
    for(Interceptor apiAuthorization : apiAuthorizations.values()) {
        if (apiAuthorization instanceof OAuth) {
            OAuth oauth = (OAuth) apiAuthorization;
            oauth.setAccessToken(accessToken);
            return;
        }
    }
}
 
开发者ID:hardsky,项目名称:lucky-calories,代码行数:14,代码来源:ApiClient.java


示例14: registerAccessTokenListener

import io.swagger.client.auth.OAuth; //导入依赖的package包/类
/**
 * Configures a listener which is notified when a new access token is received.
 * @param accessTokenListener
 */
public void registerAccessTokenListener(AccessTokenListener accessTokenListener) {
    for(Interceptor apiAuthorization : apiAuthorizations.values()) {
        if (apiAuthorization instanceof OAuth) {
            OAuth oauth = (OAuth) apiAuthorization;
            oauth.registerAccessTokenListener(accessTokenListener);
            return;
        }
    }
}
 
开发者ID:hardsky,项目名称:lucky-calories,代码行数:14,代码来源:ApiClient.java


示例15: ApiClient

import io.swagger.client.auth.OAuth; //导入依赖的package包/类
public ApiClient() {
    httpClient = new OkHttpClient();

    verifyingSsl = true;

    json = new JSON(this);

    /*
     * Use RFC3339 format for date and datetime.
     * See http://xml2rfc.ietf.org/public/rfc/html/rfc3339.html#anchor14
     */
    this.dateFormat = new SimpleDateFormat("yyyy-MM-dd");
    // Always use UTC as the default time zone when dealing with date (without time).
    this.dateFormat.setTimeZone(TimeZone.getTimeZone("UTC"));
    initDatetimeFormat();

    // Be lenient on datetime formats when parsing datetime from string.
    // See <code>parseDatetime</code>.
    this.lenientDatetimeFormat = true;

    // Set default User-Agent.
    setUserAgent("Swagger-Codegen/1.0.0/java");

    // Setup authentications (key: authentication name, value: authentication).
    authentications = new HashMap<String, Authentication>();
    authentications.put("psirt_openvuln_api_auth", new OAuth());
    // Prevent the authentications from being modified.
    authentications = Collections.unmodifiableMap(authentications);
}
 
开发者ID:CiscoPSIRT,项目名称:openVulnAPI,代码行数:30,代码来源:ApiClient.java


示例16: addOauth2Token

import io.swagger.client.auth.OAuth; //导入依赖的package包/类
private void addOauth2Token(Map<String, String> localVarHeaderParams) {
    if (((OAuth) this.apiClient.getAuthentications().get("OAuth")).getAccessToken() != null) {
        localVarHeaderParams.put("Authorization", "Bearer " + ((OAuth) this.apiClient.getAuthentications().get("OAuth")).getAccessToken());
    }
}
 
开发者ID:Tradeshift,项目名称:tradeshift-platform-sdk,代码行数:6,代码来源:DefaultApi.java


示例17: setAccessToken

import io.swagger.client.auth.OAuth; //导入依赖的package包/类
/**
 * Helper method to set access token for the first OAuth2 authentication.
 *
 * @param accessToken Access token
 */
public void setAccessToken(String accessToken) {
    Authentication auth = new OAuth();
    ((OAuth)auth).setAccessToken(accessToken);
    this.authentications.put("OAuth", auth);
}
 
开发者ID:Tradeshift,项目名称:tradeshift-platform-sdk,代码行数:11,代码来源:ApiClient.java



注:本文中的io.swagger.client.auth.OAuth类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java MessageOutputStream类代码示例发布时间:2022-05-22
下一篇:
Java IncludeRelationships类代码示例发布时间:2022-05-22
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap