Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(integrations): add support for eBay #3099

Merged
merged 5 commits into from
Dec 4, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions docs-v2/integrations/all/ebay.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
---
title: eBay
sidebarTitle: eBay
---

API configurations: [`ebay`](https://nango.dev/providers.yaml), [`ebay-sandbox`](https://nango.dev/providers.yaml)

## Features

| Features | Status |
| - | - |
| [Auth (OAuth)](/integrate/guides/authorize-an-api) | ✅ |
| [Sync data](/integrate/guides/sync-data-from-an-api) | ✅ |
| [Perform workflows](/integrate/guides/perform-workflows-with-an-api) | ✅ |
| [Proxy requests](/integrate/guides/proxy-requests-to-an-api) | ✅ |
| [Receive webhooks](/integrate/guides/receive-webhooks-from-an-api) | 🚫 (time to contribute: <48h) |

<Tip>We can implement missing features in &lt;48h, just ask for it in the [community](https://nango.dev/slack).</Tip>

## Getting started

- [OAuth docs](https://developer.ebay.com/api-docs/static/oauth-consent-request.html)
- Join the eBay Ebay Developer Program [here](https://developer.ebay.com/signin?tab=register).
**Note:** It takes around 24 hours to be approved.
- Once you have an app, you can get credentials and scopes [here](https://developer.ebay.com/my/keys)

<Tip>Need help getting started? Get help in the [community](https://nango.dev/slack).</Tip>

## API gotchas

- App ID is Client ID and Cert ID is Client Secret
- For sandbox, use `ebay-sandbox` integration, for production use `ebay` integration
- Add a Redirect URL and set "Your auth accepted URL" to your Nango callback URL:
- Default: `https://api.nango.dev/oauth/callback`
- Self-hosted: Your custom redirect URL


<Note>Add Getting Started links and Gotchas by [editing this page](https://github.com/nangohq/nango/tree/master/docs-v2/integrations/all/ebay.mdx)</Note>
1 change: 1 addition & 0 deletions docs-v2/mint.json
Original file line number Diff line number Diff line change
Expand Up @@ -393,6 +393,7 @@
"integrations/all/dixa",
"integrations/all/dropbox",
"integrations/all/docusign",
"integrations/all/ebay",
"integrations/all/e-conomic",
"integrations/all/elevio",
"integrations/all/egnyte",
Expand Down
38 changes: 38 additions & 0 deletions packages/shared/providers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1990,6 +1990,44 @@ emarsys:
expires_in_ms: 300000
docs: https://docs.nango.dev/integrations/all/emarsys

ebay:
display_name: eBay
categories:
- marketplace
- e-commerce
bodinsamuel marked this conversation as resolved.
Show resolved Hide resolved
auth_mode: OAUTH2
authorization_url: https://auth.ebay.com/oauth2/authorize
token_url: https://api.ebay.com/identity/v1/oauth2/token
authorization_params:
response_type: code
token_params:
grant_type: authorization_code
refresh_params:
grant_type: refresh_token
token_request_auth_method: basic
proxy:
base_url: https://api.ebay.com/
docs: https://docs.nango.dev/integrations/all/ebay

ebay-sandbox:
display_name: eBay (sandbox)
categories:
- marketplace
- e-commerce
auth_mode: OAUTH2
authorization_url: https://auth.sandbox.ebay.com/oauth2/authorize
token_url: https://api.sandbox.ebay.com/identity/v1/oauth2/token
authorization_params:
response_type: code
token_params:
grant_type: authorization_code
refresh_params:
grant_type: refresh_token
token_request_auth_method: basic
proxy:
base_url: https://api.sandbox.ebay.com/
docs: https://docs.nango.dev/integrations/all/ebay

e-conomic:
display_name: e-conomic
categories:
Expand Down
29 changes: 29 additions & 0 deletions packages/webapp/public/images/template-logos/ebay-sandbox.svg
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can you use a symlink instead please? ☺️

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How can i create a symlink? do you have examples of past contributions? Cause i was looking at Brex integration and they have 2 identical logos

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You can create a symbolic link with the following command within the templates-logos folder
ln -s ebay.svg ebay-sandbox.svg

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
29 changes: 29 additions & 0 deletions packages/webapp/public/images/template-logos/ebay.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading