diff --git a/basic-auth/fetcher.ts b/basic-auth/fetcher.ts index 16303e4..d29aea9 100644 --- a/basic-auth/fetcher.ts +++ b/basic-auth/fetcher.ts @@ -7,7 +7,7 @@ import { resolveURL } from "../utils/url.ts"; * See details: {@link https://developer.twitter.com/en/docs/authentication/basic-auth Basic authentication | Docs | Twitter Developer Platform} * * ```js - * import { basicAuth } from "https://deno.land/x/twitter_api_fetch/mod.ts"; + * import { basicAuth } from "jsr:@nexterias/twitter-api-fetch"; * * const fetcher = basicAuth("example", "example"); * const response = await fetcher("https://api.twitter.com/1.1/account_activity/webhooks.json"); diff --git a/oauth1/fetcher.ts b/oauth1/fetcher.ts index 11cc1b9..433f7d0 100644 --- a/oauth1/fetcher.ts +++ b/oauth1/fetcher.ts @@ -8,7 +8,7 @@ import { resolveURL } from "../utils/url.ts"; * {@link https://developer.twitter.com/en/docs/authentication/oauth-1-0a OAuth 1.0a | Docs | Twitter Developer Platform} * * ```js - * import { oauth1a } from "https://deno.land/x/twitter_api_fetch@2.1.1/mod.ts"; + * import { oauth1a } from "jsr:@nexterias/twitter-api-fetch"; * * const fetcher = await oauth1a({ * consumerKey: "Your consumer key here.", diff --git a/oauth2/fetcher.ts b/oauth2/fetcher.ts index a652e6d..b1a4f36 100644 --- a/oauth2/fetcher.ts +++ b/oauth2/fetcher.ts @@ -4,7 +4,7 @@ import { resolveURL } from "../utils/url.ts"; * {@link https://developer.twitter.com/en/docs/authentication/oauth-2-0 OAuth 2.0 | Docs | Twitter Developer Platform} * * ```js - * import { oauth2 } from "https://deno.land/x/twitter_api_fetch/mod.ts"; + * import { oauth2 } from "jsr:@nexterias/twitter-api-fetch"; * * const fetcher = oauth2("bearer token here."); *