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

com.garmin.service.OAuthService Maven / Gradle / Ivy

The newest version!
package com.garmin.service;

import com.garmin.vo.UserInfo;
import org.springframework.http.ResponseEntity;


public interface OAuthService {
    public ResponseEntity oauth(String sid) throws Exception;

    public ResponseEntity  getUserAccessTokenAndSecret(String oauthTokenValue, String oauthVerifierValue) throws Exception;

}