Category "curl"

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

Authentication error using cloudflare api

I repeatedly received an authentication error just like this (not me) when using the Cloudflare api. curl -X GET "https://api.cloudflare.com/client/v4/zones/<

Corrupted .gif download file using rust but without rust using curl command it works

Hi I tried to download a .gif file using curl command in Linux fedora 36 using curl https://static.wikia.nocookie.net/minecraft_gamepedia/images/d/d1/Magma_Bloc

How to send JSON file as part of request body in CURL POST command

I am using CURL command line to send HTTP POST to a web service. I want to include a file's contents as a PART of the body of the POST command. Is this possible

cURL request not working in GitHub actions, works locally

I’m attempting to make a cURL patch request via a GitHub action that executes when I make a push. The cURL call works perfectly when I execute it in Windo

Downloading Issues from a Public GitHub Repository

I want to download issues from Jabref, an open-source citation tool. I looked up how to do this, and it looks like the way everyone does it is through curl lik

How to get Laravel's CSRF Token from Another Website?

I want to get a csrf token from another web's form. I've tried to get that token with cUrl. I guess that was success, but I think the real problem is that anoth

Login Github with Curl

I tried call this command curl -l -u "my_user_name" https://my-enterprise-github.com Then, I input my password manually. But it returns this <html>&l

Download github release with curl

On this URL I'm able to download a .tar.gz which contains an official release. (I know it's also available on an API endpoint but this contains the test package

Trigger parameterised maven release with Curl

Using following command to perform maven release: curl -X POST -H "Content-Type: application/x-www-form-urlencoded" -u user:jenkinscrumb --data-urlencode json=

Getting "curl: (92) HTTP/2 stream 1 was not closed cleanly: INTERNAL_ERROR (err 2)"

I have a Django app which returns a large JSON while calling an API. The problem is when I'm requesting the data, the data itself is truncated which is crashing

PHP - CURL using HTTPS [closed]

I am trying to get Json Data from a https url. I have tested and working code to do just this for http but I am yet to find a working version