You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs-v2/pages/troubleshooting.mdx
+11-7Lines changed: 11 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,7 +36,9 @@ If you're still seeing the issue after trying these steps, please [report a bug]
36
36
37
37
[See FAQ here](/workflows/git/#faq).
38
38
39
-
## My workflow isn't working
39
+
## Workflows
40
+
41
+
### My workflow isn't working
40
42
41
43
If you're encountering a specific issue in a workflow, try the following steps, checking to see if they fix the problem:
42
44
@@ -46,17 +48,19 @@ If you're encountering a specific issue in a workflow, try the following steps,
46
48
47
49
If you're still seeing the issue after trying these steps, please reach out in [the community](https://pipedream.com/support).
48
50
49
-
## How do I invoke another workflow?
51
+
###How do I invoke another workflow?
50
52
51
53
We provide a [Trigger Workflow](https://pipedream.com/apps/helper-functions/actions/trigger-workflow) action in the [Helper Functions](https://pipedream.com/apps/helper-functions) app. [See more here](/workflows/building-workflows/code/nodejs/#invoke-another-workflow).
52
54
53
55
Another option is to make an HTTP request to a Pipedream HTTP webhook trigger.
54
56
55
-
## Why is my trigger not emitting events?
57
+
## Triggers
58
+
59
+
### Why is my trigger not emitting events?
56
60
57
61
Most Pipedream sources fall into one of two categories: webhook-based or timer-based.
58
62
59
-
### Webhook-based instant sources
63
+
####Webhook-based instant sources
60
64
61
65
These sources will get triggered immediately. But because events come in in real-time, most will **not** automatically fetch historical events upon creation. To surface test events in your workflow while building, you'll need to generate an eligible event in the selected app.
62
66
@@ -66,15 +70,15 @@ For example, if you've configured the "[Message Updates (Instant)](https://piped
66
70
67
71
Sources for apps like [Telegram](https://pipedream.com/apps/telegram-bot-api/triggers/message-updates) and [Google Sheets](https://pipedream.com/apps/google-sheets/triggers/new-row-added) use webhooks and get triggered immediately.
68
72
69
-
### Timer-based polling sources
73
+
####Timer-based polling sources
70
74
71
75
These sources will fetch new events on a regular interval, based on a schedule you specify in the trigger configuration.
In most cases, Pipedream will automatically fetch recent historical events to help enable easier workflow development. Sources for apps like [Twitter](https://pipedream.com/apps/twitter/triggers/search-mentions) and [Spotify](https://pipedream.com/apps/spotify/triggers/new-playlist) require we poll their endpoints in order to fetch new events.
76
80
77
-
## Where do I find my event source's ID?
81
+
###Where do I find my event source's ID?
78
82
79
83
Open [https://pipedream.com/sources](https://pipedream.com/sources) and click on your event source. Copy the URL that appears in your browser's address bar. For example:
0 commit comments