Skip to content

Instantly share code, notes, and snippets.

Created March 30, 2011 13:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/894348 to your computer and use it in GitHub Desktop.
Save anonymous/894348 to your computer and use it in GitHub Desktop.
Alternative TwitterServiceProvider to use non-SSL Twitter API
/*
* Copyright 2010 the original author or authors.
*
* 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 com.radian6.credentials.social.connect;
import org.springframework.social.connect.oauth1.AbstractOAuth1ServiceProvider;
import org.springframework.social.connect.support.ConnectionRepository;
import org.springframework.social.oauth1.OAuth1Template;
import org.springframework.social.twitter.TwitterApi;
import org.springframework.social.twitter.TwitterTemplate;
/**
* Twitter ServiceProvider implementation. Tweaked URLs.
* @author Keith Donald
* @author Craig Walls
* @author Nick Spacek
*/
public final class TwitterServiceProvider extends AbstractOAuth1ServiceProvider<TwitterApi> {
public TwitterServiceProvider(String consumerKey, String consumerSecret, ConnectionRepository connectionRepository) {
super("twitter", connectionRepository, consumerKey, consumerSecret, new OAuth1Template(consumerKey, consumerSecret,
"http://api.twitter.com/oauth/request_token",
"http://api.twitter.com/oauth/authorize?oauth_token={requestToken}",
"http://api.twitter.com/oauth/access_token"));
}
@Override
protected TwitterApi getApi(String consumerKey, String consumerSecret, String accessToken, String secret) {
return new TwitterTemplate(consumerKey, consumerSecret, accessToken, secret);
}
@Override
protected String getProviderAccountId(TwitterApi api) {
return api.getProfileId();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment