Skip to main content

Util package to drive Salesforce Oauth Web flow for testing.

Project description

A bit of Requests driven utility code to drive the Salesforce.com Oauth2 Web flow. Use this module to login to a Salesforce account using just the username and password. Good for tests and scripts which need Salesforce access_token access.

Installation

pip install salesforce-oauth-request-yplan

Usage

You need a Connected App defined in Salesforce so that you have all these pieces of info:

  1. client ID

  2. client secret

  3. redirect uri

Now you can get an access_token and instance_url like this:

import salesforce_oauth_request

result = salesforce_oauth_request.login(username=username,
                                        password=password,
                                        client_id=client_id,
                                        client_secret=client_secret,
                                        redirect_uri=redirect_uri)

print "Access token:  {}".format(result['access_token'])
print "Refresh token: {}".format(result['refresh_token'])
print "Instance URL:  {}".format(result['instance_url'])

# Now use access_token, instance_url for REST, SOAP, or BULK API access.

Options

cache_session=True/False - default False

Pass the option cache_session=true to save the access token to ~.sf_oauth to save time on repeated runs.

sandbox=True/False - default False

Pass sandbox=True to use a sandbox login. ## Testing

History

1.1.1 (2016-07-14)

  • Brought back HISTORY.rst.

  • Changed package repository url to the fork.

1.1.0 (2016-07-14)

  • Python2 and Python3 compatibility.

  • Forked salesforce-oauth-request-yplan package.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

salesforce-oauth-request-yplan-1.1.1.tar.gz (7.2 kB view details)

Uploaded Source

File details

Details for the file salesforce-oauth-request-yplan-1.1.1.tar.gz.

File metadata

File hashes

Hashes for salesforce-oauth-request-yplan-1.1.1.tar.gz
Algorithm Hash digest
SHA256 f189aedddf61b6f07a6bcaecde5bd57b0ba020af070e2ea574b160fe18f870d5
MD5 a521ef8729e964d87ced1c61c4845218
BLAKE2b-256 57a16da83cee1ab7fb14fb189fa3d1e4ebcb0578aeb96eafe496d136d6e81488

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page