Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4583484
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T21:13:17+00:00 2026-05-21T21:13:17+00:00

I have this type of curl statement curl -u xxx:yyy -d aaa=111 http://someapi.com/someservice I

  • 0

I have this type of curl statement

curl -u xxx:yyy -d “aaa=111” http://someapi.com/someservice

I would like to run this varying aaa=bbb from a list

UPDATE: Code that works, built on Jimmy’s code

<?PHP
$data = array('Aaa', 'Bbb', 'Ccc');
echo $data;    
$ch = curl_init();
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Expect:')); //Fixes the HTTP/1.1 417 Expectation Failed Bug

curl_setopt($ch, CURLOPT_USERPWD, "xxx:yyy");

foreach ($data as $param) {
    curl_setopt($ch, CURLOPT_URL, 'http://...?aaa='.$param);
    $response = curl_exec($ch);
    echo "<hr>".$response; 
}
?>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-21T21:13:18+00:00Added an answer on May 21, 2026 at 9:13 pm

    In PHP, the code would look different since you’d probably want to use the built-in cURL client rather than exec() (edited to include a loop):

    $data = array('111', '222', 'ccc');    
    
    foreach ($data as $param)
    {
        $ch = curl_init();
    
        $params = array('aaa' => $param);
    
        curl_setopt($ch, CURLOPT_URL, 'http://someapi.com/someservice');
        curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
        curl_setopt($ch, CURLOPT_USERPWD, "xxx:yyy");
    
        /* used for POST
        curl_setopt($ch, CURLOPT_POST, true); 
        curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
        */
    
        // for GET, we just override the URL
        curl_setopt($ch, CURLOPT_URL, 'http://someapi.com/someservice?aaa='.$param);
    
        $response = curl_exec($ch);
    } 
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

So let's say I have an ElasticSearch index defined like this: curl -XPUT 'http://localhost:9200/test'
I have something that looks like this: POST /o/oauth2/token HTTP/1.1 Host: accounts.google.com Content-Type: application/x-www-form-urlencoded
I have this mysql table called comments which looks like this: commentID parentID type
I have few C functions declared like this CURLcode curl_wrapper_easy_setopt_long(CURL* curl, CURLoption option, long
I have a SOLR schema.xml like this: <field name=cartype type=lowercase indexed=true stored=true/> <field name=color
I have this type which is basically a struct { int x,y,z; } that
I have this type of structure <ul> <li>one</li> <li> two has children <ul> <li>a</li>
I have this type of data: entity, account, month1, month2, ..., month12 abc, 2000.02,
I have this type of associative array. Array ( [0] => Array ( [bookedArea]
I have this base type: typeA = function () { }; typeA.prototype = {

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.