-
Notifications
You must be signed in to change notification settings - Fork 0
docs: replace raw HTTP examples with supported clients #348
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -54,16 +54,13 @@ Fulcrum is a popular field data collection platform charging $99-299/month per u | |
|
|
||
| #### 1. **Export Your Fulcrum Data** (30 minutes) | ||
|
|
||
| ```bash | ||
| # Using Fulcrum API to export your data | ||
| curl -H "X-ApiToken: YOUR_FULCRUM_TOKEN" \ | ||
| "https://api.fulcrumapp.com/api/v2/forms.json" \ | ||
| > fulcrum_forms.json | ||
|
|
||
| curl -H "X-ApiToken: YOUR_FULCRUM_TOKEN" \ | ||
| "https://api.fulcrumapp.com/api/v2/records.json" \ | ||
| > fulcrum_records.json | ||
| ``` | ||
| Use Fulcrum's supported export workflow to download the form definition and | ||
| records as `fulcrum_forms.json` and `fulcrum_records.json`. Keep attachments in | ||
| the export directory so the later import can preserve their relative paths. | ||
|
Comment on lines
+57
to
+59
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Remove this preservation claim or document a real attachment-import step. A repository-wide search finds no Fulcrum importer consuming these files, and the later sample only submits feature edits while translating photos into URL-shaped values; therefore, when a Fulcrum export contains attachment files, keeping them beside the JSON does not cause the illustrated migration to upload or preserve them and can leave users believing their media was migrated. Useful? React with 👍 / 👎. |
||
|
|
||
| `honua-migrate` does not currently claim a Fulcrum source adapter. Do not send | ||
| Fulcrum tokens through hand-written raw HTTP commands; use Fulcrum's product | ||
| export or an approved Fulcrum SDK until that adapter is available. | ||
|
|
||
| #### 2. **Create Honua App** (5 minutes) | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Restrict this scan to actual documentation paths and command examples. Git's
git grep -hstates that-iperforms case-insensitive matching and-wmatches at word boundaries, while these unrestricted globs include non-documentation artifacts such astests/Honua.Migrate.Maui.Tests/Fixtures/*.cs.txt; consequently, an unrelated fixture or explanatory paragraph containing the word “curl” will fail the entirechangesjob even when it provides no raw HTTP workflow.Useful? React with 👍 / 👎.