shopify-install-auth

Featured

Install and configure Shopify app authentication with OAuth, session tokens, and the @shopify/shopify-api SDK. Use when setting up a new Shopify app, configuring API credentials, or initializing authentication for Admin or Storefront API access. Trigger with phrases like "install shopify", "setup shopify", "shopify auth", "shopify OAuth", "configure shopify API".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Shopify Install & Auth ## Overview Set up Shopify app authentication using the official `@shopify/shopify-api` library. Covers OAuth flow, session token exchange, custom app tokens, and Storefront API access. ## Prerequisites - Node.js 18+ (the `@shopify/shopify-api` v9+ requires it) - A Shopify Partner account at https://partners.shopify.com - An app created in the Partner Dashboard with API credentials - A development store for testing ## Instructions ### Step 1: Install the Shopify API Library ```bash # Core library + Node.js runtime adapter npm install @shopify/shopify-api @shopify/shopify-app-remix # Or for standalone Node apps: npm install @shopify/shopify-api @shopify/shopify-app-express # For Remix (recommended by Shopify): npm install @shopify/shopify-app-remix @shopify/app-bridge-react ``` ### Step 2: Configure Environment Variables Create a `.env` file (add to `.gitignore` immediately): ```bash # .env — NEVER commit this file SHOPIFY_API_KEY=your_app_api_key SHOPIFY_API_SECRET=your_app_api_secret SHOPIFY_SCOPES=read_products,write_products,read_orders,write_orders SHOPIFY_APP_URL=https://your-app.example.com SHOPIFY_HOST_NAME=your-app.example.com # For custom/private apps only: SHOPIFY_ACCESS_TOKEN=shpat_xxxxxxxxxxxxxxxxxxxxx # API version — use a stable quarterly release SHOPIFY_API_VERSION=2024-10 ``` ```bash # .gitignore — add these immediately .env .env.local .env.*.local ``` ### Step 3: Initialize the Shopify API Library ```typescript // src/...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Solid

shopify-setup

Set up Shopify CLI auth and Admin API access for a store. Workflow: install CLI, authenticate, create custom app, store access token, verify. Use when connecting to a Shopify store, setting up API access, or troubleshooting auth issues with Shopify CLI or Admin API tokens.

809 Updated 2 weeks ago
jezweb
AI & Automation Featured

shopify-hello-world

Create a minimal working Shopify app that queries products via GraphQL Admin API. Use when starting a new Shopify integration, testing your setup, or learning basic Shopify API patterns. Trigger with phrases like "shopify hello world", "shopify example", "shopify quick start", "simple shopify app", "first shopify API call".

2,266 Updated today
jeremylongshore
AI & Automation Featured

shopify-apps

Expert patterns for Shopify app development including Remix/React Router apps, embedded apps with App Bridge, webhook handling, GraphQL Admin API, Polaris components, billing, and app extensions.

39,227 Updated today
sickn33
AI & Automation Featured

shopify-ci-integration

Configure CI/CD pipelines for Shopify apps with GitHub Actions, API version testing, and Shopify CLI deployment. Trigger with phrases like "shopify CI", "shopify GitHub Actions", "shopify automated tests", "CI shopify", "shopify deploy pipeline".

2,266 Updated today
jeremylongshore
AI & Automation Featured

shopify-local-dev-loop

Configure Shopify local development with Shopify CLI, hot reload, and ngrok tunneling. Use when setting up a development environment, configuring test workflows, or establishing a fast iteration cycle with Shopify. Trigger with phrases like "shopify dev setup", "shopify local development", "shopify dev environment", "develop with shopify", "shopify CLI dev".

2,266 Updated today
jeremylongshore