Skip to content

Commit 1aa8dfc

Browse files
Fixing broken link refs
1 parent 62fc17f commit 1aa8dfc

File tree

9 files changed

+19
-19
lines changed

9 files changed

+19
-19
lines changed

docs-v2/pages/connect/api-proxy.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import Callout from '@/components/Callout'
55

66
Pipedream Connect provides a proxy API that you can use to send authenticated requests to any integrated API on behalf of your users, which is useful in a few scenarios:
77

8-
1. You need code-level control and you want to use [Pipedream's OAuth](/connect/oauth-clients#using-pipedream-oauth) instead of [your own OAuth client](/connect/oauth-clients#using-your-own-oauth-client)
8+
1. You need code-level control and you want to use [Pipedream's OAuth](/connect/managed-auth/oauth-clients#using-pipedream-oauth) instead of [your own OAuth client](/connect/managed-auth/oauth-clients#using-your-own-oauth-client)
99
2. There isn't a [pre-built tool](/connect/components) (action) for the app, or you need to modify the request
1010
3. You want to avoid storing end user credentials in your app
1111

docs-v2/pages/connect/api.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ You'll primarily use the browser SDK to let your users securely connect apps fro
7070
1. [Create a short-lived token on your server](#create-a-new-token)
7171
2. Initiate auth with that token to securely connect an account for a specific user
7272

73-
Here's a Next.js example [from our quickstart](/connect/quickstart):
73+
Here's a Next.js example [from our quickstart](/connect/managed-auth/quickstart):
7474

7575
```typescript
7676
import { createFrontendClient } from "@pipedream/sdk/browser"
@@ -408,7 +408,7 @@ You can find the app's ID in the response from the [List apps](/rest-api#list-ap
408408

409409
`oauth_app_id` **string** (_optional_)
410410

411-
The ID of the [OAuth app](/connect/quickstart#create-a-pipedream-oauth-client) you'd like to retrieve accounts for.
411+
The ID of the [OAuth app](/connect/managed-auth/quickstart#create-a-pipedream-oauth-client) you'd like to retrieve accounts for.
412412

413413
---
414414

@@ -427,7 +427,7 @@ Never return user credentials to the client
427427
</Callout>
428428

429429
<Callout type="info">
430-
To retrieve the credentials for any account in `production` for OAuth apps (Slack, Google Sheets, etc), the connected account must be using [your own OAuth client](/connect/oauth-clients#using-a-custom-oauth-client). You can only retrieve end user credentials for accounts that are using Pipedream's OAuth clients in `development`. [Learn more here](/connect/oauth-clients#using-pipedream-oauth).
430+
To retrieve the credentials for any account in `production` for OAuth apps (Slack, Google Sheets, etc), the connected account must be using [your own OAuth client](/connect/managed-auth/oauth-clients#using-a-custom-oauth-client). You can only retrieve end user credentials for accounts that are using Pipedream's OAuth clients in `development`. [Learn more here](/connect/managed-auth/oauth-clients#using-pipedream-oauth).
431431
</Callout>
432432

433433
##### Examples
@@ -680,7 +680,7 @@ Never return user credentials to the client
680680
</Callout>
681681

682682
<Callout type="info">
683-
To retrieve the credentials for any account in `production` for OAuth apps (Slack, Google Sheets, etc), the connected account must be using [your own OAuth client](/connect/oauth-clients#using-a-custom-oauth-client). You can only retrieve end user credentials for accounts that are using Pipedream's OAuth clients in `development`. [Learn more here](/connect/oauth-clients#using-pipedream-oauth).
683+
To retrieve the credentials for any account in `production` for OAuth apps (Slack, Google Sheets, etc), the connected account must be using [your own OAuth client](/connect/managed-auth/oauth-clients#using-a-custom-oauth-client). You can only retrieve end user credentials for accounts that are using Pipedream's OAuth clients in `development`. [Learn more here](/connect/managed-auth/oauth-clients#using-pipedream-oauth).
684684
</Callout>
685685

686686
##### Examples
@@ -927,7 +927,7 @@ DELETE /{project_id}/apps/{app_id}/accounts
927927

928928
`app_id` **string**
929929

930-
The app ID for which you want to delete all connected accounts. `app_id` can be `oauth_app_id` for [OAuth apps](/connect/quickstart#create-a-pipedream-oauth-client) or name slug for key-based apps, which you can find under the **Authentication** section of any [app page](https://pipedream.com/apps)
930+
The app ID for which you want to delete all connected accounts. `app_id` can be `oauth_app_id` for [OAuth apps](/connect/managed-auth/quickstart#create-a-pipedream-oauth-client) or name slug for key-based apps, which you can find under the **Authentication** section of any [app page](https://pipedream.com/apps)
931931

932932
##### Examples
933933

docs-v2/pages/connect/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ import VideoPlayer from "@/components/VideoPlayer";
1010
## Use managed auth
1111

1212
- Handle authorization or accept API keys on behalf of your users, for any of Pipedream's [{process.env.PUBLIC_APPS}+ APIs](https://pipedream.com/apps)
13-
- Use the [Client SDK](https://github.com/PipedreamHQ/pipedream/tree/master/packages/sdk) or [Connect Link](/connect/quickstart#or-use-connect-link) to accept auth in minutes
13+
- Use the [Client SDK](https://github.com/PipedreamHQ/pipedream/tree/master/packages/sdk) or [Connect Link](/connect/managed-auth/quickstart#or-use-connect-link) to accept auth in minutes
1414
- Ship new integrations quickly with Pipedream's approved OAuth clients, or use your own
1515

1616

1717
## Act on behalf of your users
1818

1919
- Retrieve OAuth access tokens and API keys for your end users with Pipedream's [REST API](/connect/api)
20-
- 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
20+
- Add 10,000+ pre-built tools and triggers from {process.env.PUBLIC_APPS}+ APIs to your AI agent or embed them directly in your SaaS app
2121
- Develop and deploy complex multi-step [workflows](/connect/workflows) in our [visual workflow builder](/workflows)
2222
- Use the Connect proxy to make custom API requests
2323

docs-v2/pages/connect/managed-auth/connect-link.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ If you aren't able to execute JavaScript or open an iFrame in your frontend, or
88

99
## How to generate a link
1010

11-
See [the Connect quickstart](/connect/quickstart) for a full tutorial for getting Connect up and running.
11+
See [the Connect quickstart](/connect/managed-auth/quickstart) for a full tutorial for getting Connect up and running.
1212

1313
Here's a quick overview of how to generate a Connect Link URL:
1414

15-
1. First, [generate a token](/connect/quickstart/#generate-a-short-lived-token) for your users.
15+
1. First, [generate a token](/connect/managed-auth/quickstart/#generate-a-short-lived-token) for your users.
1616
2. Extract the `connect_link_url` from the token response.
1717
3. Before returning the URL to your user, add an `app` parameter to the end of the query string:
1818

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ For any OAuth app that supports it, **you can always use your own client.** Your
2929
## Using a custom OAuth client
3030

3131
1. Follow the steps [here](/connected-accounts/oauth-clients#configuring-custom-oauth-clients) to create an OAuth client in Pipedream.
32-
2. When connecting an account either via the [frontend SDK](/connect/quickstart#use-the-pipedream-sdk-in-your-frontend), make sure to include the `oauthAppId` in `pd.connectAccount()`.
33-
3. If using [Connect Link](/connect/quickstart#or-use-connect-link), make sure to include the `oauthAppId` in the URL.
32+
2. When connecting an account either via the [frontend SDK](/managed-auth/connect/quickstart#use-the-pipedream-sdk-in-your-frontend), make sure to include the `oauthAppId` in `pd.connectAccount()`.
33+
3. If using [Connect Link](/connect/managed-auth/quickstart#or-use-connect-link), make sure to include the `oauthAppId` in the URL.
3434

3535
### Finding your OAuth app ID
3636

docs-v2/pages/connect/managed-auth/webhooks.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Connect Webhooks
22

3-
When you [generate a Connect token](/connect/quickstart/#generate-a-short-lived-token), you can pass a `webhook_uri` parameter. Pipedream will send a POST request to this URL when the user completes the connection flow, or if an error occurs at any point. [See the API docs](/connect/api#create-a-new-token) for details.
3+
When you [generate a Connect token](/connect/managed-auth/quickstart/#generate-a-short-lived-token), you can pass a `webhook_uri` parameter. Pipedream will send a POST request to this URL when the user completes the connection flow, or if an error occurs at any point. [See the API docs](/connect/api#create-a-new-token) for details.
44

55
## Webhook events
66

docs-v2/pages/connect/troubleshooting.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Connect tokens expire, and are only able to be used once. Try generating a new t
4040

4141
>App not found. Please check your app id.
4242
43-
Double-check the app slug you're passing [when connecting your user's account](/connect/quickstart#connect-your-users-account).
43+
Double-check the app slug you're passing [when connecting your user's account](/connect/managed-auth/quickstart#connect-your-users-account).
4444

4545
### Connection failed. Please retry or contact support.
4646

docs-v2/pages/connect/workflows.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ When you trigger the workflow, Pipedream will look up the corresponding account
7171

7272
To run an end-to-end test as an end user, you need to have users and connected accounts in your project. If you already have a **development** account linked, you can skip this step.
7373

74-
If you don't, the fastest way to do this is [on the **Users** tab](/connect#users) in your Pipedream project:
74+
If you don't, the fastest way to do this is [on the **Users** tab](/connect/managed-auth/users) in your Pipedream project:
7575
- You'll see there's a button to **Connect account**
7676
- Go through the flow and make sure to create the account in **development** mode
7777
- Note the **external user ID** of the account you just connected, you'll need it in the next step
@@ -242,7 +242,7 @@ We plan to improve this interface in the future, and potentially allow developer
242242
To test a step using the connected account of one of your end users in the builder, you'll need a few things to be configured so that your workflow knows which account to use.
243243

244244
**Make sure you have an external user with the relevant connected account(s) saved to your project:**
245-
- Go to the **[Users tab](/connect#users)** in the **Connect** section of your project to confirm
245+
- Go to the **[Users tab](/connect/managed-auth/users)** in the **Connect** section of your project to confirm
246246
- If not, either connect one from your application or [directly in the UI](#connect-a-test-account)
247247

248248
**Pass the environment and external user ID:**
@@ -393,11 +393,11 @@ Pipedream Connect Error: Required account for hubspot not found for external use
393393
394394
#### No matching external user ID
395395
- There was an external user ID passed, but it didn't match any users in the project.
396-
- Double-check that the external user ID that you passed when invoking the workflow matches one either [in the UI](/connect#users) or [via the API](/connect/api#accounts).
396+
- Double-check that the external user ID that you passed when invoking the workflow matches one either [in the UI](/connect/managed-auth/users) or [via the API](/connect/api#accounts).
397397
398398
#### Required account not found for external user ID
399399
- The external user ID was passed when invoking the workflow, but the user doesn't have a connected account for one or more of the apps that are configured to use it in this workflow execution.
400-
- You can check which connected accounts are available for that user [in the UI](/connect#users) or [via the API](/connect/api#accounts).
400+
- You can check which connected accounts are available for that user [in the UI](/connect/managed-auth/users) or [via the API](/connect/api#accounts).
401401
402402
#### Running workflows for your users in production requires a higher tier plan
403403
- Anyone is able to run workflows for your end users in `development`. The Business plan is required to run on behalf of `production` users.

docs-v2/pages/rest-api/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ You can find the app's ID in the response from the [List apps](#list-apps) endpo
189189

190190
`oauth_app_id` **string** (_optional_)
191191

192-
The ID of the custom [OAuth app](/connect/quickstart#create-a-pipedream-oauth-client) you'd like to retrieve accounts for.
192+
The ID of the custom [OAuth app](/connect/managed-auth/quickstart#create-a-pipedream-oauth-client) you'd like to retrieve accounts for.
193193

194194
---
195195

0 commit comments

Comments
 (0)