CreateOAuthEchoHandler() 공개 메소드

public CreateOAuthEchoHandler ( Uri authServiceProvider, Uri realm = null ) : OAuthEchoHandler
authServiceProvider System.Uri
realm System.Uri
리턴 OAuthEchoHandler
예제 #1
0
            public MobypictureApi(TwitterApi twitterApi)
            {
                var handler = twitterApi.CreateOAuthEchoHandler(AuthServiceProvider, OAuthRealm);

                this.http = Networking.CreateHttpClient(handler);
                this.http.Timeout = Networking.UploadImageTimeout;
            }
예제 #2
0
파일: yfrog.cs 프로젝트: upsilon/OpenTween
            public YfrogApi(TwitterApi twitterApi)
            {
                var handler = twitterApi.CreateOAuthEchoHandler(AuthServiceProvider, OAuthRealm);

                this.http = Networking.CreateHttpClient(handler);
                this.http.Timeout = TimeSpan.FromMinutes(1);
            }