You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey, I want to send payload for that I want to set auth. In javascript axios I can do it like this
const res = await axios.post('https://httpbin.org/basic-auth/foo/bar', {
// Axios looks for the `auth` option, and, if it is set, formats a
// basic auth header for you automatically.
auth: {
username: 'my_key',
}
});
not sure how to achieve this in HTTP.jl
The only only auth related stuff I found is basicauth where it sets "Basic _____" Authorization in header. But Authorization and api auth are different things
API keys if you expect developers to build internal applications that don't need to access more than a single user's data. Use OAuth access tokens if you want users to easily provide authorization to applications
The text was updated successfully, but these errors were encountered:
Hey, I want to send payload for that I want to set
auth
. In javascript axios I can do it like thisnot sure how to achieve this in HTTP.jl
The only only auth related stuff I found is
basicauth
where it sets"Basic _____"
Authorization in header. But Authorization and api auth are different things???
from google
The text was updated successfully, but these errors were encountered: