Category "curl"

What does "Signature Verified" result from jwt.io mean?

I am creating a jwt using the header, payload and prvate key provided by Apple. I get "Signature Verified" result using public key and generated token in jwt.io

Basic Authentication with CURL/PHP

I'm trying to do a basic API Authentication using PHP and CURL and I keep getting the error "no Route matched with those values". Here is what the API docs are

Adobe AEM package manager - how to show Activity log using curl

I am using curl to automate AEM package manager, but I would like to see the actual progress. What I am seeing in /crx/packmgr/index.jsp in the window on the lo

Get NPM Package README via API

I need to get NPM Package README files in PHP. Does anyone know an API that I can use to grab this? I've tried to use registry.npmjs.org, although the latest ve

Log in to a site (Stack Overflow) by Bash

How can I log in to a website using Bash in Linux? For example, to log in to Stack Overflow I tried many different methods, shown below, but nothing's worked. w

Grep exclude count of occurence match between comments <!-- --> of curl body

I am very new to linux & bash script. I'm trying to read an xml file using curl command and count the number of occurrence of the word </entity> in it

Flush local disk of Google Colab to Google Drive

I am downloading a 350 GB dataset to Google Drive by setting my current working directory to a folder on Google Drive in Google Colab, and using the curl comman

Flickr camera roll backup with wget or curl

How can I backup the camera roll page in flickr with wget or curl as a static page? #!/bin/bash cookies=/Users/xxx/Downloads/flickr/cookies.txt root="https://w

php curl_exec() Connection refused when retrieving a remote image

I want to retrieve a remote hosted image with php. The image exists, I can access to it with my browser. However the result of the curl_exec() is empty and the

asdf plugin add giving "curl: (3) Illegal characters found in URL" with packer build

Packer version 1.8.0 https://releases.hashicorp.com/packer/1.8.0/packer_1.8.0_windows_amd64.zip I am using packer vagrant builder to generate a vagrant-box for

curl: (3) [globbing] nested brace in column 189 when sending PUT request to Google Sheets API

I am trying to write to a Google Spreadsheet using Google Sheet API v4. The usage about the API is listed here I made a curl request that looks like the follo

I'm trying to use curl with php but getting this error:Could not resolve host: Bearer

I'm trying to make a request using curl with php, but I'm getting the following error. Could I be using curl wrong? I generate $jwt on top lines exec("curl -v -

importing repos to github from curl results in 404 response

i am trying to use the curl command for github importer to import repositories from tfs (as git), following github's documentation when i am running this comman

error:14094410:SSL routines:ssl3_read_bytes:sslv3 alert handshake failure

I'm trying to connect to a service that requires a certificate for authorization, I import certificates on my machine and when I directly hit on the server by m

Download a json file using Python or Curl not working

Download a json file using Python or Curl not working url here: https://api.nasdaq.com/api/screener/stocks?tableonly=true&limit=25&offset=0&download

How to set Object array to CURL POSTFIELDS?

I'm gonna send json array field using CURL POSTFIELDS. but not working. JSON data is below: { "Searches": [ { "Facets": [

Script that will print HTTP headers for multiple servers

I've created the following bash script: #!/bin/bash for ip in $(cat targets.txt); do "curl -I -k https://"${ip}; "curl -I http://"${ip} done However I am not

what does "* Connection #0 to host example.com left intact" mean?

I'm using curl with curl -v https://example.com and at the end it says * Connection #0 to host example.com left intact. What does that mean?

How to enable curl on Wordpress

How to enable cURL on Wordpress. I have install cURL on my server and I have also enabled in PHP.ini file(removed ; before extension) but still I'm getting err

Get Header Authorization value of a login api (sent with username and password in json body) using php curl

I am writing a code in PHP where i need to call and API (Sending username and password) and then fetch the authorization value. I tried some solutions which are