Tagged Questions
0
votes
0answers
12 views
cannot curl/crawl https from soundcloud
I am trying to crawl the data from soundcloud.com... But the problem is that it works for http... Whenever i enter a https url, the page is blank and there are no results, there are no errors too
I ...
0
votes
0answers
11 views
The requested URL returned error: 405
i have a trouble with curl...
when i do curl my domain in https it gives me an error
"curl error #22: The requested URL returned error: 405"
i spent almost two days on it to solve/search but ...
1
vote
1answer
15 views
Error in cURL Function
hey i'm trying to cURL "https://www.libertyreserve.com/captcha.jpg"
so i tried to curl it but the result was "1x1" Gif Pic
then i reialized that the site want a cookie from the Login Page to show a ...
0
votes
1answer
34 views
curl: unsupported protocol(https) in CentOS6 - related with jansson
I am following jansson tutorial below.
https://github.com/akheron/jansson/blob/master/doc/tutorial.rst#id2
while I code like tutorial, I faced a problem.
this jansson thing uses curl library, and ...
0
votes
0answers
28 views
task scheduler not running social engine
I am working on a social engine project version 4.2.8. I enabled https for the project by adding this two lines in the .htaccess files
RewriteCond %{HTTPS} !=on
RewriteRule ^ ...
1
vote
1answer
69 views
CURL PHP MyGate Payment gateway
I am trying to post some details to mygate payment gateway.
If i use a normal form and post to the url, it generates a token id for that specific session and internally redirects the page to the ...
2
votes
2answers
313 views
github error: Protocol https not supported or disabled in libcurl
I have a few github repos and they have been working fine for the last few months.
However, a few days ago I started getting a strange error when trying to push
and pull:
error: Protocol https not ...
0
votes
1answer
98 views
How can I use curl to simulate a request from Firefox over a proxy?
In particular, I am attempting to replicate the behavior of firefox when I set it to use a proxy for https traffic.
From my tests, it appears that Firefox sends a CONNECT request to the proxy, while ...
0
votes
0answers
72 views
PHP - How to get query string from final URL after redirect? [duplicate]
I'm trying to get a query string in the final URL after redirection.
https://example.com/oauth/auth?user=foo&password=bar
redirects in my browser to:
https://example.com/?secret=8273761838346
...
3
votes
1answer
522 views
PHP CURL CURLOPT_SSL_VERIFYPEER ignored
For some reason I am unable to use CURL with HTTPS. Everything was working fine untill I ran upgrade of curl libraries. Now I am experiencing this response when trying to perform CURL requests: ...
1
vote
1answer
183 views
Git over HTTPS can do ls-list but cannot clone via HTTP proxy
This is a common question/problem, however I am having slightly different problems than others. I am trying to use git via my http proxy at work. I have already configured my proxy settings in git:
...
1
vote
2answers
128 views
curl autologin does not write cookies
I try to login with cUrl posting json-data, server responds that login is successful, but it does not write session into cookies, my code:
<?php
$json_url = 'https://www.site.com/Login';
...
1
vote
1answer
781 views
cURL is unable to use client certificate , in local server
I set up a local server using XAMPP. I have two php scripts , a sender and a receiver. I am trying to send an XML file from the sender to the receiver using HTTP over SSL (HTTPS).
I created a self ...
1
vote
1answer
338 views
How to use a self signed certificate with XAMPP for HTTPS requests using cURL?
I installed XAMPP and I need to test some HTTPS requests. First of all i tried to configure XAMPP so I can use the HTTPS requests.
This is what I did :
1) In the php.ini file , I uncommented the ...
1
vote
1answer
411 views
How to make an HTTPS request using cURL?
I have 2 php scripts , to send an xml file and catch it. I am using cURL and everything was ok. Now i am trying to do the same but using HTTP over SSL (HTTPS). I have installed a local server with ...
0
votes
0answers
199 views
postForm request (HTTPS) using proxy returns “rubbish content”
I'm writing a script in R to send a form through a proxy to a server, but the answer I get from the server is nonsense to me. Although, if I deactivate the proxy connection the answer from the server ...
1
vote
1answer
210 views
Convert this curl cmd to Python 3
The following curl command works perfectly (private data anonymized):
curl -X POST 'https://api.twilio.com/2010-04-01/Accounts/abc/SMS/Messages.json' \
-d 'From=%2B14155551234' \
-d ...
0
votes
1answer
82 views
sending xml string using php curl but not as post parameter
:)
I'm trying to send an XML using curl but not as post parameter. what I mean is this.
for example.
the receiving side of that XML won't be able to recieve the XML using $_POST variable.
he will ...
4
votes
2answers
366 views
Https post request using curl : Android
I am trying to execute a https post request using curl. When I execute this request, I am neither getting any response nor any error or exception. Help or any clue about what's going wrong here is ...
0
votes
1answer
75 views
curl to resuse https connection sessions
I have built curl with openssl and I am able to execute the https connection .
Now every time when curl make TLS connection it makes handshake again .
I need to make use of the client with ...
0
votes
1answer
84 views
What are the possible reasons for cURL error 60 on an HTTPS site?
After scouring the web, I really am at my wit's end. I know this question has been asked several times but none of the solutions solve my problem. I'd like to know if there are any other known reasons ...
1
vote
1answer
112 views
Use cURL to log in HTTPS site from my site [closed]
I tried to use the following code to login a website. It has a popup message
"Although this page is encrypted, the information you have entered is to be sent over an unencrypted connection and could ...
0
votes
0answers
330 views
PHP - https stream through http proxy
I'm trying to get the content of a stream over HTTPS, but I have to go over an HTTP proxy.
I'd like not to use cURL but rather use fopen with a context argument.
The thing is, I can't make it work ...
0
votes
1answer
128 views
PUT request using `UrlFetchApp` returns 'Bad Request' but the same request outside Google Apps Script works
This is the Google Apps Script that makes the request:
UrlFetchApp.fetch('https://user:password@sitename.com/api', {
method: 'put',
headers: { 'Accept': '*/*' },
payload: 'foo=bar&baz=qux'
...
0
votes
1answer
162 views
Secure SSL / HTTPS API call with PHP
In reference to this previous question:
Connect through HTTPS instead of HTTP
Would this be the good way to make a secure API call with HTTPS?
public function demo(){
$Username = 'username';
...
0
votes
1answer
183 views
PHP: CURL PUT FOR Https Url not working as fopen fails
I want to upload the image to the url using Curl.
But as the Image file is on https url i am not able to read the file using fopen.
Code is as below.
$file = "https://xyz.com/image.jpg";
$url = ...
0
votes
1answer
271 views
curl -k HTTPS url in Mac OS X Command Line gives Empty Response
I have been trying to get a response from a remote server using curl with a HTTPS Url.
curl -k https://mymoviezone.com/verfiy -d un="zeus@gmail.com" -d pwd="goohoo" -d apiver="2.9"
But it gives ...
0
votes
1answer
264 views
No required SSL certificate was sent with foursquare API
I have issue as below when i call the Foursquare API, it was working before but suddenly i get this error
`400 Bad Request
No required SSL certificate was sent
nginx/1.0.12`
Any Idea ?
0
votes
3answers
502 views
Get user facebook login status but don't want the redirect
I am building a website that uses the php facebook libraries. At the beginning of every page I am checking to see if the user is logged into facebook or not (or trying to) with the ...
2
votes
1answer
388 views
Git push failing due to company proxy certificate being changed
Recently, the certificates for the company proxy was changed. Ever since, I have been facing problems using git. When I try to do a git push , I get the following error:
error: gnutls_handshake() ...
2
votes
2answers
336 views
Git over HTTPS can ls-list but cannot clone
While this is a common question, this one is particlary different than the others, when I issue git ls-remote https://myuser@bitbucket.org/myser/repo.git , it asks me for the password and gives me the ...
2
votes
1answer
58 views
Change notification system to SSL.(right now it's blocked when using https in Chrome because using http)
I hava a notification system in my site and I am trying to change it from http to https.
But my app.js is listing to port 8888 now.
Is there a quick way I can modify it? I tried several ways online ...
0
votes
1answer
304 views
PHP - How to fire HTTP get request on a secured URL (HTTPS)?
I am trying to fire a HTTP GET request on a secured URL which asks for username and password. This is fine when I am using that from browser but I am not sure how to do that using PHP.
I have tried ...
-2
votes
1answer
74 views
How do I express this cURL command in PHP [closed]
The command line curl is:
curl https://sitea.com/v1 -X PUT \
-d callback_url="https://siteb.com/event" \
I have
ch = curl_init();
$callback_url = " https://sitea.com/v1";
...
3
votes
2answers
610 views
Getting no content from a HTTPS connection using CURL
I've been trying to learn more about CURL recently and finally managed to compile and install it properly as a static library for my test project. Eventually I'll move on to learning about posting ...
0
votes
0answers
97 views
Send form using curl https site
I have a problem. I want to send a form using curl but it doesn't work. The form is in this url: ...
0
votes
0answers
84 views
Client-Side SSL or something similar?
I have a REST web service hosted within Azure, under SSL.
I access it from two clients,
One, A standard ASP.NET website , using jQuery Ajax calls to contact the endpoints.
Two, A C++ Application, ...
0
votes
0answers
205 views
Using cURL to send CSV file data to HTTPS URL
I am trying to use cURL to send data from a .CSV file to a secured server. The required parameters are user ID, Password, File name and Data.
So far, I've just been using the cmd line and I've tried ...
0
votes
0answers
54 views
Maintenance log CURL
I have a problem with this scirpt. It logs me corectly but when I run second curl_exec which should send form it redirect me to login page, so it doesn't keep login status. Here is the code:
<?php
...
0
votes
3answers
258 views
Curl sending form to https
I'm trying to send image and some more options to the server using curl, but I don't know why it doesn't work. Here is the code:
<?php
header('Location: ...
1
vote
2answers
162 views
PHP cURL or https stream wrapper (openssl) most widely enabled [closed]
I'm trying to write portable php application. What I want is for this code to be working on as many shared hosting providers as possible with PHP >= 5.2
I need this code to operate with the Dropbox ...
1
vote
1answer
299 views
libcurl: curl_easy_perform fails with CURLE_SSL_CACERT_BADFILE after some time
I’m using libcurl 7.26.0 in my C++ application to communicate with server by https protocol. It works correctly but after ~20 minutes connection fails: curl_easy_perform returns ...
2
votes
1answer
238 views
lib cCURL with https throws error
I have written C curl application code to test my server TLS connection using my own certificates and own server setup with AES-ECC-CCM chiper suite . but I got the error at the client side as curl ...
0
votes
3answers
154 views
PHP CURL to get contents of a https page
Example url:
https://www.tescogoldexchange.com/gold-calculator.aspx?carat=9&weight=1&ref=miniQuote
I am trying to use cURL to get the contents of an HTTPS page.
Problem is that I am not ...
0
votes
2answers
57 views
Prevent URL to be seen in network console in 'Chrome/Firebug'
Can you make someone to visit a HTTPS URL (for example https://graph.facebook.com/Enrique') via an iFrame/Script tag, and the visitor still don't know what was the URL which got downloaded even if ...
0
votes
1answer
537 views
Curl authorization
I have spring security with https settings.
I'm seeing an unexpected behavior when trying to run curl GET on a URL in secure way.
When curl first sends a request to the server, it does it with no ...
0
votes
1answer
50 views
Navigating (Cruddy)HTTPS site with CURL
I am trying to navigate an HTTPS page using cURL. My problem isn't with cURL per say though, it's with the page in general. The problem is that after I am logged in, I want to go to a certain page so ...
0
votes
1answer
510 views
Why cant curl/OpenSSL fetch a website that chrome+firefox can?
Both in my program (which uses OpenSSL) and curl, I cannot fetch a website:
$ curl -v https://registration.experient-inc.com/HTMLProduction/ShowCES131/ConfirmationImages/CES131_Header.JPG
* About to ...
0
votes
0answers
112 views
How to make insecure HTTPS call in Node.js
in Curl, I can do -k to perform insecure SSL connections and transfers. However, in node.js, I check the doc for HTTPS. I can't find any options that can do it.
The reason I need this is that I ...
1
vote
0answers
96 views
'incorrect checksum for freed object' libcurl using https on osx
i keep getting 'incorrect checksum for freed object' errors when i try to execute a curl command on a https url. This is only happening on my osx developer machine, when i execute the same code on a ...


