Merge pull request #2871 from linxiulei/fix_oauth_utf8
Explicitly stating utf-8 when fetching oauth token
This commit is contained in:
commit
cc06a65a79
@ -194,7 +194,11 @@ func (a *dockerAuthorizer) fetchTokenWithOAuth(ctx context.Context, to tokenOpti
|
|||||||
form.Set("password", to.secret)
|
form.Set("password", to.secret)
|
||||||
}
|
}
|
||||||
|
|
||||||
resp, err := ctxhttp.PostForm(ctx, a.client, to.realm, form)
|
resp, err := ctxhttp.Post(
|
||||||
|
ctx, a.client, to.realm,
|
||||||
|
"application/x-www-form-urlencoded; charset=utf-8",
|
||||||
|
strings.NewReader(form.Encode()),
|
||||||
|
)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return "", err
|
return "", err
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user