Back to project page dw2020.
The source code is released under:
Apache License
If you think the Android project dw2020 listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.fivehundredpx.api.auth; //from w w w . j a v a 2 s .c o m import org.apache.http.client.methods.HttpPost; import com.fivehundredpx.api.FiveHundredException; public interface OAuthProvider { void signForAccessToken(HttpPost req) throws FiveHundredException; void setOAuthConsumer(String consumerKey, String consumerSecret); void setOAuthRequestToken(String requestTokenKey, String requestTokenSecret); }