Skip to content

multipart/form-data Requires cUrl Flags #85

@aoswalt

Description

@aoswalt

When sending a multipart/form-data request, listing the parameters as with a application/x-www-form-urlencoded request does not work.

With the global section

https://api.todoist.com/sync/v8

token = my_token
project_id = 12345
--

Works as expected

--
Content-Type: application/x-www-form-urlencoded

POST /templates/export_as_file
token=:token&
project_id=:project_id

API errors saying an argument is missing

--
Content-Type: multipart/form-data

POST /templates/import_into_project
token=:token&
project_id=:project_id
file=@project.csv

Works as expected (after replacing the variables with their values)

--
Content-Type: multipart/form-data

-F token=:token
-F project_id=:project_id
-F file=@project.csv

POST /templates/import_into_project

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions