����ʥ���֥���AtomAPI���ݤ��ʤ����ε�������������
�����������ϸ��Ƥ��äѤ�Ʊ���褦�˺��äƤ�ͤ�����ߤ�����

�Ȥ����櫓�ǡ��פ��֤��Ĵ��ľ������
����Υ������Ȱ㤦��ʬ��ԥå����åס�
��äѤ�WSSEǧ�����ݥ���ȤǤ��������줵���̤�Ф��ȤϤ���ʤꡣ


$nonce = sha1(md5(time()));


������ʸ�����������鲿�Ǥ⤤���Ȥϻפ����ɡ�


$pass_digest = base64_encode(pack('H*', sha1($nonce.$created.strtolower(md5($password)))));


�����������դ��ä���
��ʸ���ˤ���󤸤�ʤ�����ʸ���ˤ��롣


���Ȥ�get�ǵ������������������η�̤���post����URL��ȤäƵ������ꤲ��ߤ�����

������Ѥ�����������
<?php
require_once 'cURL.php';

$atomapi_url = "http://atomblog.ameba.jp/servlet/_atom/blog";

$user_id = "USERID";
$password = "PASS";

$created = date('Y-m-d\TH:i:s\Z');
$nonce = sha1(md5(time()));
$pass_digest = base64_encode(pack('H*', sha1($nonce.$created.strtolower(md5($password)))));

$wsse =
    'UsernameToken Username="'.$user_id.'", '.
    'PasswordDigest="'.$pass_digest.'", '.
    'Nonce="'.base64_encode($nonce).'", '.
    'Created="'.$created.'"';

$headers = array("X-WSSE" => $wsse);

$curl = new Curl();
$curl->headers = $headers;
$res = $curl->get($atomapi_url);

//��Ƥ���URL�����
$xml = simplexml_load_string($res->body);
$postUrl = (string) $xml->link[0]->attributes()->href;

//����������������Ȥ��롣
$title = "�ƥ���";
$text = '<b>�ƥ������</b>';

$rawdata = sprintf('
<?xml version="1.0" encoding="utf-8"?>
<entry xmlns="http://purl.org/atom/ns#"
xmlns:app="http://www.w3.org/2007/app#"
xmlns:mt="http://www.movabletype.org/atom/ns#">
<title>%s</title>
<content type="application/xhtml+xml">
<![CDATA[%s]]>
</content>
</entry>
',$title,$text);

$curl = new Curl();
$headers = array(
              "X-WSSE" => $wsse,
              "Content-Type" => "application/x.atom+xml",
              );
$curl->headers = $headers;
$curl->options = array("POSTFIELDS" => $rawdata);
$res = $curl->post($postUrl);


���ͤˤ����Ƥ��������������ȤϤ����顣
http://senpai4.blog29.fc2.com/blog-entry-452.html