2016-07-07 2 views
0

guzzle lib를 통해 컬 요청을하려고합니다. 내 컬 요청에 아무런 문제가 없습니다 :curl 요청을 guzzle으로 변환

$memberId = md5(strtolower($data['email'])); 
$dataCenter = substr($apiKey,strpos($apiKey,'-')+1); 
$url = 'https://' . $dataCenter . '.api.mailchimp.com/3.0/lists/' . $listId . '/members/' . $memberId; 

$json = json_encode([ 
    'email_address' => $data['email'], 
    'status'  => $data['status'], 
    'merge_fields' => [ 
     'FNAME'  => $data['firstname'], 
     'LNAME'  => $data['lastname'] 
    ] 
]); 

$ch = curl_init($url); 

curl_setopt($ch, CURLOPT_USERPWD, 'user:' . $apiKey); 
curl_setopt($ch, CURLOPT_HTTPHEADER, ['Content-Type: application/json']); 
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); 
curl_setopt($ch, CURLOPT_TIMEOUT, 10); 
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'PUT'); 
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); 
curl_setopt($ch, CURLOPT_POSTFIELDS, $json); 

$result = curl_exec($ch); 
$httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE); 
curl_close($ch); 

return $result; 

는 어떻게 접근 방법을 목구멍이 요청을 변환 할 수 있습니까?

+1

당신을 시도 적이을 만들려면이 문서를 참조 할 수 있습니다? 어떤 문제가 있습니까? SO는 코드 작성 서비스가 아닙니다. –

답변