curl.js (hoppscotch-2.0.0) | : | curl.js (hoppscotch-2.1.0) | ||
---|---|---|---|---|
skipping to change at line 22 | skipping to change at line 22 | |||
bearerToken, | bearerToken, | |||
method, | method, | |||
rawInput, | rawInput, | |||
rawParams, | rawParams, | |||
rawRequestBody, | rawRequestBody, | |||
contentType, | contentType, | |||
headers, | headers, | |||
}) => { | }) => { | |||
const requestString = [] | const requestString = [] | |||
requestString.push(`curl -X ${method}`) | requestString.push(`curl -X ${method}`) | |||
requestString.push(` '${url}${pathName}${queryString}'`) | requestString.push(` '${url}${pathName}?${queryString}'`) | |||
if (auth === "Basic Auth") { | if (auth === "Basic Auth") { | |||
const basic = `${httpUser}:${httpPassword}` | const basic = `${httpUser}:${httpPassword}` | |||
requestString.push( | requestString.push( | |||
` -H 'Authorization: Basic ${window.btoa( | ` -H 'Authorization: Basic ${window.btoa( | |||
unescape(encodeURIComponent(basic)) | unescape(encodeURIComponent(basic)) | |||
)}'` | )}'` | |||
) | ) | |||
} else if (auth === "Bearer Token" || auth === "OAuth 2.0") { | } else if (auth === "Bearer Token" || auth === "OAuth 2.0") { | |||
requestString.push(` -H 'Authorization: Bearer ${bearerToken}'`) | requestString.push(` -H 'Authorization: Bearer ${bearerToken}'`) | |||
} | } | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added |