如何像Twitter一样整合Twitter Oauth?

时间:2011-11-12 06:20:10

标签: android android-layout twitter android-emulator android-widget

我是整合Twitter的新手。我在我的应用程序中使用以下代码实现了Twitter:

         // Create file 
            File picture = new File(APP_FILE_PATH + "/myAwesomeDrawing.png");  
            // Create TwitPic object and allocate TwitPicResponse object 
            TwitPic tpRequest = new TwitPic("username", "password"); 
            TwitPicResponse tpResponse = null;  
            // Make request and handle exceptions                            
            try {         
                tpResponse = tpRequest.uploadAndPost(picture, "Image Uploaded from My AndroidDrawing App...");

                } 
            catch (IOException e) {         
                e.printStackTrace(); 
            } 
            catch (TwitPicException e) {         
                e.printStackTrace(); 
            }  
            // If we got a response back, print out response variables                               
            if(tpResponse != null)         
                tpResponse.dumpVars();

一切正常。但在这里我必须以编程方式添加用户名和密码。有没有其他方法可以像Facebook OAuth一样使用Twitter集成进行集成?

我需要知道如何检查Twitter OAuth,如果用户未登录,则会在其内置窗口中询问用户名和密码。