You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I have installed your library for parsing CURL strings. I tried to parse this string curl --location --request GET 'https://a.klaviyo.com/api/v2/lists?api_key=my_api_key' \ --header 'Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1bmlxdWVfbmFtZSI6IkVsaXFzMjAyMSIsInN1YiI6IkVsaXFzMjAyMSIsInJvbGUiOiJVc2VyIiwiaXNzIjoiYXBwLmN1c3RvbWlseS5jb20iLCJhdWQiOiJhbGwiLCJleHAiOjE2NTkxMTMwODEsIm5iZiI6MTY1NjUyMTA4MX0.fsF4UHhtXhCwvMiDe0JxXEBXvsaSlsaNSAo82GM6Bgc' \ --header 'Content-Type: application/json'
And my code is import { parseCurl as trueParseCurl } from 'curlup'; const parsed = trueParseCurl(curlString); console.log(parsed);
The query parameters of the URL were not returned in parsing result: { "url": "https://a.klaviyo.com/api/v2/lists?api_key=my_api_key", "method": "GET", "headers": { "Authorization": "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1bmlxdWVfbmFtZSI6IkVsaXFzMjAyMSIsInN1YiI6IkVsaXFzMjAyMSIsInJvbGUiOiJVc2VyIiwiaXNzIjoiYXBwLmN1c3RvbWlseS5jb20iLCJhdWQiOiJhbGwiLCJleHAiOjE2NTkxMTMwODEsIm5iZiI6MTY1NjUyMTA4MX0.fsF4UHhtXhCwvMiDe0JxXEBXvsaSlsaNSAo82GM6Bgc", "Content-Type": "application/json" }, "auth": {} }
The text was updated successfully, but these errors were encountered:
Hi, I have installed your library for parsing CURL strings. I tried to parse this string
curl --location --request GET 'https://a.klaviyo.com/api/v2/lists?api_key=my_api_key' \ --header 'Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1bmlxdWVfbmFtZSI6IkVsaXFzMjAyMSIsInN1YiI6IkVsaXFzMjAyMSIsInJvbGUiOiJVc2VyIiwiaXNzIjoiYXBwLmN1c3RvbWlseS5jb20iLCJhdWQiOiJhbGwiLCJleHAiOjE2NTkxMTMwODEsIm5iZiI6MTY1NjUyMTA4MX0.fsF4UHhtXhCwvMiDe0JxXEBXvsaSlsaNSAo82GM6Bgc' \ --header 'Content-Type: application/json'
And my code is
import { parseCurl as trueParseCurl } from 'curlup'; const parsed = trueParseCurl(curlString); console.log(parsed);
The query parameters of the URL were not returned in parsing result:
{ "url": "https://a.klaviyo.com/api/v2/lists?api_key=my_api_key", "method": "GET", "headers": { "Authorization": "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1bmlxdWVfbmFtZSI6IkVsaXFzMjAyMSIsInN1YiI6IkVsaXFzMjAyMSIsInJvbGUiOiJVc2VyIiwiaXNzIjoiYXBwLmN1c3RvbWlseS5jb20iLCJhdWQiOiJhbGwiLCJleHAiOjE2NTkxMTMwODEsIm5iZiI6MTY1NjUyMTA4MX0.fsF4UHhtXhCwvMiDe0JxXEBXvsaSlsaNSAo82GM6Bgc", "Content-Type": "application/json" }, "auth": {} }
The text was updated successfully, but these errors were encountered: