Skip to content

Multiple values in URL #285

@JakubMrozek

Description

@JakubMrozek

Look at this: https://developers.google.com/blogger/docs/3.0/reference/posts/list
I need to specify a parameter status with all values (draft, live, scheduled).
When I set

options =
    status: ['draft', 'live', 'scheduled']

client.posts.list options, cb

Google API node.js client generate this URL:

...status[]=draft&status[]=live&status[]=scheduled

But this is not working. Blogger needs this URL:

...status=draft&status=live&status=scheduled

You can try API explorer. Is it possible to generate URL, which is working for Blogger API?

Metadata

Metadata

Assignees

Labels

🚨This issue needs some love.triage meI really want to be triaged.

Type

No type
No fields configured for issues without a type.

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions