在Dropbox API中自动执行OAuth - 单击“提交”按钮进行登录

时间:2013-07-03 19:53:58

标签: python selenium webdriver phantomjs splinter

我正在尝试通过官方Dropbox API登录Dropbox并将文件上传到我的Dropbox。

代码似乎没有点击提交按钮才能登录Dropbox。代码不会停止它只是挂起或冻结。我没有收到错误,所以没有追溯。

奇怪的是,当我注释掉填写的电子邮件或密码(或两者)时,点击提交按钮就可以了。

我不想手动访问Dropbox身份验证链接并单击“允许”按钮。所以我试图通过使用一个让我自动化浏览器操作的工具(Splinter)来自动执行该任务。

对于我的代码,我使用Splinter,而浏览器类型我正在使用PhantomJS

以下是代码:

from splinter import *
from dropbox import client, rest, session

# Initiate Dropbox API
APP_KEY = '###'
APP_SECRET = '###'
ACCESS_TYPE = 'dropbox'
sess = session.DropboxSession(APP_KEY, APP_SECRET, ACCESS_TYPE)
emailDropbox = '###'
passwordDropbox = '###'

request_token = sess.obtain_request_token()

urlDropbox = sess.build_authorize_url(request_token)

# Start Splinter login code
# Assumes you are not logged in to Dropbox

# Target url
print 'Target url: ', urlDropbox

browser = Browser('phantomjs')
print 'Starting browser'
print 'Visiting url'
browser.visit(urlDropbox)

# Email form
print 'Is the email form present? ', browser.is_element_present_by_id('login_email')
print 'Fill email form'
browser.find_by_id('login_email').first.fill(emailDropbox)

# Password form
print 'Is the password form present? ', browser.is_element_present_by_id('login_password')
print 'Fill password form'
browser.find_by_id('login_password').first.fill(passwordDropbox)

# Login submit button
print 'Is the submit button present?', browser.is_element_present_by_name('login_submit_dummy')

# Click submit button
print 'Attempting to click the submit button in order to login'
browser.find_by_name('login_submit_dummy').first.click()
print 'Submit button successfully clicked'

# Allow connection with Dropbox
print 'Is the "Allow" button present?', browser.is_element_present_by_id('allow_access')
browser.find_by_id('allow_access').click()
print 'The "Allow" button is successfully clicked'

# Quit the browser
browser.quit()

# The rest of the Dropbox code
# This will fail if the user didn't visit the above URL and hit 'Allow'
access_token = sess.obtain_access_token(request_token)

client = client.DropboxClient(sess)
print "linked account:", client.account_info()

f = open('working-draft.txt')
response = client.put_file('/magnum-opus.txt', f)
print "uploaded:", response

有没有人知道出了什么问题以及如何解决它?

感谢。

1 个答案:

答案 0 :(得分:1)

我在使用time.sleep(5)点击之前暂停了5秒钟。

这是工作代码:

from splinter import *
from dropbox import rest, session
from dropbox import client as dbclient
import time

# Dropbox API
APP_KEY = '###'
APP_SECRET = '###'
ACCESS_TYPE = 'dropbox'
sess = session.DropboxSession(APP_KEY, APP_SECRET, ACCESS_TYPE)
emailDropbox = '###'
passwordDropbox = '###'

request_token = sess.obtain_request_token()

urlDropbox = sess.build_authorize_url(request_token)

def phantomjsOAuth():
    # Target url
    print 'Target url: ', urlDropbox

    browser = Browser('phantomjs')
    print 'Starting phantomjs browser'
    print 'Visiting url'
    browser.visit(urlDropbox)

    # Email form
    print 'Is the email form present? ', browser.is_element_present_by_id('login_email')
    print 'Filling email form'
    browser.find_by_id('email-field').first.find_by_id('login_email').first.fill(emailDropbox)
    print 'Email form successfully filled'

    # Password form
    print 'Is the password form present? ', browser.is_element_present_by_id('login_password')
    print 'Filling password form'
    browser.find_by_id('login_password').first.fill(passwordDropbox)
    print 'Password form successfully filled'

    # Find login submit button
    print 'Is the "Submit" button present?', browser.is_element_present_by_name('login_submit_dummy')
    submitButton = browser.is_element_present_by_name('login_submit_dummy')

    if submitButton == True:
        print 'Pausing for 5 seconds to avoid clicking errors'
        time.sleep(5)
        print 'Attempting to click the "Submit" button in order to login'
        browser.find_by_name('login_submit_dummy').first.click()
        print '"Submit" button successfully clicked'

        # Allow connection with Dropbox
        print 'Is the "Allow" button present?', browser.is_element_present_by_css('.freshbutton-blue')
        allowButton = browser.is_element_present_by_css('.freshbutton-blue')

        if allowButton == True:
            print 'The "Allow" button is present, attempting to click..'
            browser.find_by_css('.freshbutton-blue').click()
            print 'The "Allow" button is successfully clicked, access to Dropbox is granted.'

            browser.quit()

            dropboxCode()

        else:
            print 'The "Allow" button is not present, quitting.'
            browser.quit()

    else:
        print 'The "Submit" button was not present, quitting.'
        browser.quit()

def dropboxCode():
    # The rest of the Dropbox code
    # This will fail if 'Allow' wasn't clicked
    access_token = sess.obtain_access_token(request_token)

    client = dbclient.DropboxClient(sess)
    print "linked account:", client.account_info()

    f = open('dropbox_api_test_file.txt')
    response = client.put_file('/Python/Apps/###/Orders/dropbox_api_test_file.txt', f)
    print "uploaded:", response
    sess.unlink()

if __name__ == "__main__":
    phantomjsOAuth()