2012-01-14 4 views
0

누구나이 문제가 보이면 작동하지 않으며 반환 null입니다.Posterous api php curl

$request = array(
    "api_token" => $token, 
    "name" => null, 
    "byline" => "via api", 
    "owner_id" => null, 
    "id" => $id, 
    "raw_theme" => $t, 
    "friendly_name" => "Test" 
); 


$session = curl_init($url); 
curl_setopt($session, CURLOPT_USERPWD, $user . ":" . $password); 
curl_setopt($session, CURLOPT_POST, true); 
curl_setopt($session, CURLOPT_POSTFIELDS, $request); 
curl_setopt($session, CURLOPT_HEADER, false); 
curl_setopt($session, CURLOPT_FOLLOWLOCATION, true); 
curl_setopt($session, CURLOPT_RETURNTRANSFER, true); 
$response = curl_exec($session); 
curl_close($session); 
var_dump($response); 
+0

'curl_error ($ session)'및 'curl_errno ($ session)'의 결과는 무엇입니까? –

+0

둘 모두에 대한 출력이 없습니다. – ThomasReggi

+0

'$ url' 변수의 값은 무엇입니까? – Cyclonecode

답변

2

는 잘 모르겠어요하지만 난 보내려고하는 경우 게시물 매개 변수가 같은 이름을 지정하는 다음 https://posterous.com/api에서 새로운 테마 요청을 만들 : 아마도 당신이로 코드를 변경 시도해야한다, 그래서

theme[byline] 
theme[designer_url] 
theme[friendly_name] 
theme[raw_theme] 
theme[thumb] 

뭔가 같은 : 또한

$request = array(
    "api_token" => $token, 
    "name" => null, 
    "theme[byline]" => "via api", 
    "owner_id" => null, 
    "id" => $id, 
    "theme[raw_theme]" => $t, 
    "theme[friendly_name]" => "Test" 
); 

, 나는 그들의 예를 들어 어떤 owner_id, name 또는 id 매개 변수를 볼 수 없습니다.

+0

] 오 맨 내가 방금 업데이트를 게시하려고했는데 감사합니다 !! – ThomasReggi