Skip to content

Commit 43f2bfb

Browse files
Clarifying OAuth usage (#15781)
* Clarifying OAuth usage * Update oauth-clients.mdx
1 parent 82b3bb2 commit 43f2bfb

File tree

5 files changed

+11
-10
lines changed

5 files changed

+11
-10
lines changed

Diff for: docs-v2/pages/connect/_meta.tsx

-3
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,6 @@ export default {
2323
"api": {
2424
"title": "API & SDK reference",
2525
},
26-
"troubleshooting": {
27-
"title": "Troubleshooting",
28-
},
2926
"migrating-from-project-keys-to-oauth": {
3027
"display": "hidden",
3128
},

Diff for: docs-v2/pages/connect/index.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import VideoPlayer from "@/components/VideoPlayer";
1919
## Act on behalf of your users
2020

2121
- Retrieve OAuth access tokens and API keys for your end users with Pipedream's [REST API](/connect/api/)
22-
- Add 10k pre-built tools and triggers from {process.env.PUBLIC_APPS}+ APIs to your AI agent or embed them directly in your SaaS app
22+
- [Add 10k pre-built tools and triggers](/connect/components) from {process.env.PUBLIC_APPS}+ APIs to your AI agent or embed them in your SaaS app
2323
- Develop and deploy complex multi-step [workflows](/connect/workflows/) in our best-in-class [visual builder](/workflows/building-workflows/)
2424
- Send custom API requests while still avoiding dealing with customer credentials with the [Connect proxy](/connect/api-proxy/)
2525

Diff for: docs-v2/pages/connect/managed-auth/oauth-clients.mdx

+6-6
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,18 @@ There are two types of apps in Pipedream:
1313
2. **OAuth**: These apps require OAuth authorization. Pipedream manages the OAuth flow for these apps, ensuring you always have a fresh access token for requests.
1414

1515
<Callout type="info">
16-
For any OAuth app that supports it, **you can always use your own client.** Your ability to use Pipedream's OAuth clients in production depends on the use case.
16+
For any OAuth app that supports it, **you can always use your own client.** Your ability to use Pipedream's OAuth clients in production depends on the use case. See below for details.
1717
</Callout>
1818

1919
<br />
2020

2121
<div className="highlightHeaderRowTable">
22-
| Operation | Details | Environment |
22+
| Operation | Details | OAuth Client |
2323
|--------|---------|------------------------------|
24-
| Retrieve user credentrials | [Fetch the credentials](/connect/api#accounts) for your end user from Pipedream's API to use in your app | `development`<br />`production` |
25-
| Invoke workflows | [Trigger any Pipedream workflow](/connect/workflows) and use the connected account of your end users | `development`<br />`production` |
26-
| Embed prebuilt tools | [Run any action and deploy any trigger](/connect/components) directly from your AI agent or app |`development`<br />✅ `production` |
27-
| Proxy API requests | [Write custom code to interface with any integrated API](/connect/api-proxy) while avoiding dealing with user auth |`development`<br />✅ `production` |
24+
| Retrieve user credentials | [Fetch the credentials](/connect/api#accounts) for your end user from Pipedream's API to use in your app | ❌ Pipedream<br />✅ Custom |
25+
| Invoke workflows | [Trigger any Pipedream workflow](/connect/workflows) and use the connected account of your end users | ❌ Pipedream<br />✅ Custom |
26+
| Embed prebuilt tools | [Run any action and deploy any trigger](/connect/components) directly from your AI agent or app |Pipedream<br />✅ Custom |
27+
| Proxy API requests | [Write custom code to interface with any integrated API](/connect/api-proxy) while avoiding dealing with user auth |Pipedream<br />✅ Custom |
2828
</div>
2929

3030
## Using a custom OAuth client

Diff for: vercel.json

+4
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,10 @@
229229
{
230230
"source": "/docs/code/python/#listing-files-in-tmp",
231231
"destination": "/docs/code/python/working-with-files/#listing-files-in-tmp"
232+
},
233+
{
234+
"source": "/docs/connect/troubleshooting",
235+
"destination": "/docs/connect/managed-auth/troubleshooting"
232236
}
233237
]
234238
}

0 commit comments

Comments
 (0)