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

com.github.scribejava.apis.YahooApi20 Maven / Gradle / Ivy

There is a newer version: 8.3.3
Show newest version
package com.github.scribejava.apis;

import com.github.scribejava.core.builder.api.DefaultApi20;

public class YahooApi20 extends DefaultApi20 {

    protected YahooApi20() {
    }

    private static class InstanceHolder {
        private static final YahooApi20 INSTANCE = new YahooApi20();
    }

    public static YahooApi20 instance() {
        return InstanceHolder.INSTANCE;
    }

    @Override
    public String getAccessTokenEndpoint() {
        return "https://api.login.yahoo.com/oauth2/get_token";
    }

    @Override
    protected String getAuthorizationBaseUrl() {
        return "https://api.login.yahoo.com/oauth2/request_auth";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy