Skip to content

Commit d555cb1

Browse files
authored
Use Bearer authorization scheme (#246)
1 parent 8605cb0 commit d555cb1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ class Replicate {
218218

219219
const headers = {};
220220
if (auth) {
221-
headers["Authorization"] = `Token ${auth}`;
221+
headers["Authorization"] = `Bearer ${auth}`;
222222
}
223223
headers["Content-Type"] = "application/json";
224224
headers["User-Agent"] = userAgent;

0 commit comments

Comments
 (0)