API invoke need authentication information
See original GitHub issuei try to call api by reading the doc: https://github.com/linkedin/WhereHows/tree/datahub/datahub-frontend
but it response with 401 Unauthorized how i can pass the authentication information? i have little knowledge for ember.js framework.
[op@my-200 WhereHows]$ curl -v http://localhost:9001/api/v2/browse?type=dataset
* About to connect() to localhost port 9001 (#0)
* Trying ::1...
* Connected to localhost (::1) port 9001 (#0)
> GET /api/v2/browse?type=dataset HTTP/1.1
> User-Agent: curl/7.29.0
> Host: localhost:9001
> Accept: */*
>
< HTTP/1.1 401 Unauthorized
< Date: Thu, 19 Dec 2019 01:52:54 GMT
< Content-Length: 0
<
* Connection #0 to host localhost left intact
Issue Analytics
- State:
- Created 4 years ago
- Comments:10 (8 by maintainers)
Top Results From Across the Web
Best practices for REST API security: Authentication and ...
You'll need to store users' OAuth credentials. Don't put them in local storage—that can be accessed by any JavaScript running on the page!...
Read more >API authentication and authorization - Idratherbewriting.com
One popular method for authenticating and authorizing users is OAuth 2.0. This approach relies on an authentication server to communicate with ...
Read more >Controlling and managing access to a REST API in API Gateway
API Gateway supports multiple mechanisms for controlling and managing access to your API. You can use the following mechanisms for authentication and ...
Read more >Access and authentication for the REST API
All REST API calls must be authenticated. Instead of passing the full credentials on every REST API call, REST uses a token. The...
Read more >Most Popular API Authentication Methods | 3Pillar Global
Application Programming Interfaces (APIs)—the vital links that allow applications to exchange services and data—require authentication ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
one option can be as below
@cptran777 let’s update the doc to include a section on this. A few screenshots will help.