0
Get products id
One script reply has been approved by the moderators Verified

Retrieves the details of an existing product. Supply the unique product ID from either a product creation request or the product list, and Stripe will return the corresponding product information.

Created by hugo697 354 days ago Viewed 9000 times
0
Submitted by hugo697 Typescript (fetch-only)
Verified 354 days ago
1
type Stripe = {
2
  token: string;
3
};
4
/**
5
 * Get products id
6
 * Retrieves the details of an existing product. Supply the unique product ID from either a product creation request or the product list, and Stripe will return the corresponding product information.
7
 */
8
export async function main(auth: Stripe, id: string, expand: any) {
9
  const url = new URL(`https://api.stripe.com/v1/products/${id}`);
10
  encodeParams({ expand }).forEach((v, k) => {
11
    if (v !== undefined && v !== "") {
12
      url.searchParams.append(k, v);
13
    }
14
  });
15
  const response = await fetch(url, {
16
    method: "GET",
17
    headers: {
18
      "Content-Type": "application/x-www-form-urlencoded",
19
      Authorization: "Bearer " + auth.token,
20
    },
21
    body: undefined,
22
  });
23
  if (!response.ok) {
24
    const text = await response.text();
25
    throw new Error(`${response.status} ${text}`);
26
  }
27
  return await response.json();
28
}
29

30
function encodeParams(o: any) {
31
  function iter(o: any, path: string) {
32
    if (Array.isArray(o)) {
33
      o.forEach(function (a) {
34
        iter(a, path + "[]");
35
      });
36
      return;
37
    }
38
    if (o !== null && typeof o === "object") {
39
      Object.keys(o).forEach(function (k) {
40
        iter(o[k], path + "[" + k + "]");
41
      });
42
      return;
43
    }
44
    data.push(path + "=" + o);
45
  }
46
  const data: string[] = [];
47
  Object.keys(o).forEach(function (k) {
48
    if (o[k] !== undefined) {
49
      iter(o[k], k);
50
    }
51
  });
52
  return new URLSearchParams(data.join("&"));
53
}
54