Package org.apache.amber.oauth2.client

Examples of org.apache.amber.oauth2.client.URLConnectionClient


            .setDescription(CommonExt.APP_DESCRIPTION)
            .setIcon(CommonExt.APP_ICON)
            .setRedirectURL(CommonExt.APP_REDIRECT_URI)
            .buildJSONMessage();

        OAuthRegistrationClient oauthclient = new OAuthRegistrationClient(new URLConnectionClient());
        OAuthClientRegistrationResponse response = oauthclient.clientInfo(request);

        assertEquals(CommonExt.CLIENT_ID, response.getClientId());
        assertEquals(CommonExt.CLIENT_SECRET, response.getClientSecret());
        assertEquals(CommonExt.EXPIRES_IN, response.getExpiresIn());
View Full Code Here


            .setDescription(CommonExt.APP_DESCRIPTION)
            .setIcon(CommonExt.APP_ICON)
            .setRedirectURL(CommonExt.APP_REDIRECT_URI)
            .buildBodyMessage();

        OAuthRegistrationClient oauthclient = new OAuthRegistrationClient(new URLConnectionClient());
        try {
            OAuthClientRegistrationResponse response = oauthclient.clientInfo(request);
            fail("exception expected");
        } catch (OAuthProblemException e) {
            assertNotNull(e.getError());
View Full Code Here

                .setClientSecret("3acb294b071c9aec86d60ae3daf32a93")
                .setRedirectURI("http://localhost:8080/")
                .setCode(code)
                .buildBodyMessage();

            OAuthClient oAuthClient = new OAuthClient(new URLConnectionClient());

            //Facebook is not fully compatible with OAuth 2.0 draft 10, access token response is
            //application/x-www-form-urlencoded, not json encoded so we use dedicated response class for that
            //Own response class is an easy way to deal with oauth providers that introduce modifications to
            //OAuth specification
View Full Code Here

                    .setIcon(oauthRegParams.getIcon())
                    .buildBodyMessage();
            }


            OAuthRegistrationClient client = new OAuthRegistrationClient(new URLConnectionClient());
            OAuthClientRegistrationResponse response = client.clientInfo(request);

            oauthParams.setClientId(response.getClientId());
            oauthParams.setClientSecret(response.getClientSecret());
            oauthParams.setAuthzEndpoint(oauthRegParams.getAuthzEndpoint());
View Full Code Here

                .setRedirectURI(oauthParams.getRedirectUri())
                .setCode(oauthParams.getAuthzCode())
                .setGrantType(GrantType.AUTHORIZATION_CODE)
                .buildQueryMessage();

            OAuthClient client = new OAuthClient(new URLConnectionClient());
            String app = Utils.findCookieValue(req, "app");

            OAuthAccessTokenResponse oauthResponse = null;
            Class<? extends OAuthAccessTokenResponse> cl = OAuthJSONAccessTokenResponse.class;
View Full Code Here

    }

    @Test
    public void testSuccessfullAccesToken() throws Exception {

        OAuthClientRequest request = OAuthClientRequest
            .tokenLocation(Common.ACCESS_TOKEN_ENDPOINT)
            .setGrantType(GrantType.PASSWORD)
            .setClientId(Common.CLIENT_ID)
            .setClientSecret(Common.CLIENT_SECRET)
            .setUsername(Common.USERNAME)
View Full Code Here

    }

    @Test
    public void testInvalidRequest() throws Exception {

        OAuthClientRequest request = OAuthClientRequest
            .tokenLocation(Common.ACCESS_TOKEN_ENDPOINT)
            .setGrantType(GrantType.PASSWORD)
            .setClientId(Common.CLIENT_ID)
            .buildBodyMessage();
View Full Code Here

    }

    @Test
    public void testInvalidClient() throws Exception {
        OAuthClientRequest request = OAuthClientRequest
            .tokenLocation(Common.ACCESS_TOKEN_ENDPOINT)
            .setGrantType(GrantType.PASSWORD)
            .setClientId("wrong_client_id")
            .setClientSecret(Common.CLIENT_SECRET)
            .setUsername(Common.USERNAME)
View Full Code Here

    @Test
    public void testWrongParametersEndUserAuthorization() throws Exception {


        OAuthClientRequest request = OAuthClientRequest
            .authorizationLocation(Common.AUTHORIZATION_ENPOINT)
            .setClientId(Common.CLIENT_ID)
            .setRedirectURI(Common.REDIRECT_URL)
            .buildQueryMessage();
View Full Code Here

    }

    @Test
    public void testCorrectParametersEndUserAuthorization() throws Exception {

        OAuthClientRequest request = OAuthClientRequest
            .authorizationLocation(Common.AUTHORIZATION_ENPOINT)
            .setClientId(Common.CLIENT_ID)
            .setRedirectURI(Common.REDIRECT_URL + "1")
            .setResponseType(ResponseType.CODE.toString())
            .buildQueryMessage();
View Full Code Here

TOP

Related Classes of org.apache.amber.oauth2.client.URLConnectionClient

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.