Skip to content

pedelman/hello-world-app-python-flask

 
 

Repository files navigation

Bigcommerce Sample App: Python

This is a small Flask application that implements the OAuth callback flow for Bigcommerce Single Click Apps and uses the Bigcommerce API to pull a list of products on a Bigcommerce store. For information on how to develop apps for Bigcommerce stores, see our Developer Portal.

We hope this sample gives you a good starting point for building your next killer app! What follows are steps specific to running and installing this sample application.

Registering the app with Bigcommerce

  • Create a trial store on Bigcommerce
  • Go to the Developer Portal and log in.
  • Go to "My Apps"
  • Click the button "Create an app", enter a name for the new app, and then click "Create"
  • You don't have to fill out all the details for your app right away, but you do need to provide some core details in section 4 (Technical). Note that if you are just getting started, you can use localhost for your hostname, but ultimately you'll need to host your app on the public Internet.
    • Auth Callback URL: https://<app hostname>/bigcommerce/callback
    • Load Callback URL: https://<app hostname>/bigcommerce/load
    • Uninstall Callback URL: https://<app hostname>/bigcommerce/uninstall
    • Remove User Callback URL: https://<app hostname>/bigcommerce/remove-user (if enabling your app for multiple users)
  • Enable the Products - Read Only scope under OAuth scopes, which is what this sample app needs.
  • Click Save & Close on the top right of the dialog.
  • You'll now see your app in a list in the My Apps section of Develper Portal. Hover over it and click View Client ID. You'll need these values in the next step.

Getting started

  • Clone this repo: git clone git@github.com:bigcommerce/hello-world-app-python-flask.git
  • Change to the repo directory: cd hello-world-app-python-flask
  • If you want to use virtualenv: virtualenv ENV && source ENV/bin/activate
  • Install dependencies with pip: pip install -r requirements.txt
  • Copy .env-example to .env
  • Edit .env:
    • Set BC_CLIENT_ID and BC_CLIENT_SECRET to the values obtained from Developer Portal.
    • Set APP_URL to https://<app hostname>.
    • Set SESSION_SECRET to a long random string, such as that generated by os.urandom(64).
  • Run the app: python ./app.py

Hosting the app

In order to install this app in a Bigcommerce store, it must be hosted on the public Internet. You can get started in development by simply running python app.py to run it locally, and then use localhost in your URLs, but ultimately you will need to host it somewhere to use the app anywhere other than your development system.

Installing the app in your trial store

  • Login to your trial store
  • Go to the Marketplace and click My Drafts. Find the app you just created and click it.
  • A details dialog will open. Click Install and the draft app will be installed in your store.

About

Hello World sample app in Python and Flask

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 91.0%
  • HTML 9.0%