question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Expose Query Parameters

See original GitHub issue

Here is the proposed API changes to make it where user can access the query parameters. This is a follow up to PR https://github.com/Azure/azure-cosmos-dotnet-v3/pull/802#issuecomment-773663109

Option 1: public IEnumerable<(string key, object value)> GetQueryParamters();

Option2: public IReadOnlyList<(string key, object value)> GetQueryParamters();

Option 3: Does it give a snapshot or a mapping to the underlying data structure? public IReadOnlyDictionary<string, object> GetQueryParamters();

@thomaslevesque, @FabianMeiswinkel, and @kirankumarkolli what are you opinions?

Issue Analytics

  • State:closed
  • Created 3 years ago
  • Comments:8 (7 by maintainers)

github_iconTop GitHub Comments

1reaction
thomaslevesquecommented, Feb 9, 2021

@j82w That works for me. I’ll send a new PR, the original one is too messed up now…

0reactions
thomaslevesquecommented, Feb 10, 2021

Here it is: #2210

Read more comments on GitHub >

github_iconTop Results From Across the Web

Information exposure through query strings in url
Information exposure through query strings in URL is when sensitive data is passed to parameters in the URL. This allows attackers to obtain...
Read more >
What are Query Parameters (in API terms) | API Glossary
API Query parameters can be defined as the optional key-value pairs that appear after the question mark in the URL. Basically, they are...
Read more >
Parsing URL query params from an exposed API
i'm trying to parse the request i'm getting to an exposed API i've configured as POST method, the POST call to this endpoint...
Read more >
Question: How to best expose http restlike API with many ...
I need to expose a http service with several optional query parameters in name-value pairs. I do not want to send query parameter...
Read more >
Never Put Secrets in URLs and Query Parameters
URLS and query parameters aren't secure. They should never contain sensitive or important information (passwords, static shared secrets, ...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found