All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.scribe.up.provider.impl.WindowsLiveProvider Maven / Gradle / Ivy

The newest version!
/*
  Copyright 2012 Jerome Leleu

   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
 */
package org.scribe.up.provider.impl;

import org.scribe.builder.api.LiveApi;
import org.scribe.model.OAuthConfig;
import org.scribe.model.SignatureType;
import org.scribe.up.addon_to_scribe.ProxyOAuth20ServiceImpl;
import org.scribe.up.profile.OAuthAttributesDefinitions;
import org.scribe.up.profile.JsonHelper;
import org.scribe.up.profile.UserProfile;
import org.scribe.up.profile.windowslive.WindowsLiveProfile;
import org.scribe.up.provider.BaseOAuth20Provider;

import com.fasterxml.jackson.databind.JsonNode;

/**
 * This class is the OAuth provider to authenticate user in Windows Live (SkyDrive, Hotmail and Messenger).
 * 

* It returns a {@link org.scribe.up.profile.windowslive.WindowsLiveProfile}. *

* More information at http://msdn.microsoft.com/en-us/library/live/hh243641.aspx * * @see org.scribe.up.profile.windowslive.WindowsLiveProfile * @author Jerome Leleu * @since 1.1.0 */ public class WindowsLiveProvider extends BaseOAuth20Provider { @Override protected WindowsLiveProvider newProvider() { return new WindowsLiveProvider(); } @Override protected void internalInit() { this.service = new ProxyOAuth20ServiceImpl(new LiveApi(), new OAuthConfig(this.key, this.secret, this.callbackUrl, SignatureType.Header, "wl.basic", null), this.proxyHost, this.proxyPort); } @Override protected String getProfileUrl() { return "https://apis.live.net/v5.0/me"; } @Override protected UserProfile extractUserProfile(final String body) { final WindowsLiveProfile profile = new WindowsLiveProfile(); final JsonNode json = JsonHelper.getFirstNode(body); if (json != null) { profile.setId(JsonHelper.get(json, "id")); for (final String attribute : OAuthAttributesDefinitions.windowsLiveDefinition.getAllAttributes()) { profile.addAttribute(attribute, JsonHelper.get(json, attribute)); } } return profile; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy