예제 #1
0
 public static RestClient Client(string servicePath)
 {
     return(new RestClient
     {
         BaseUrl = new Uri(servicePath),
         Authenticator = new OAuth2AuthorizationRequestHeaderAuthenticator(OAuthHelper.GetAuthenticationResult().AccessToken, "Bearer")
     });
 }