Porblem with WWW HTTPS POST

Hi,

I try via WWW to post photo to FB,but get http 400.
------------------------------------------ code part--------------------------------------------
WWWForm form = new WWWForm();
form.headers[“enctype”] = “multipart/form-data”;
form.AddField(“access_token”, “148940495173709|vR0pFrOqzKs_JIOwreGI-8oRmfU”);
form.AddField(“message”, text);
form.AddBinaryData(“source”, bytes, fileName, “image/jpeg”);
WWW post = new WWW(“https://graph.facebook.com/me/photos?access_token=148940495173709|vR0pFrOqzKs_JIOwreGI-8oRmfU”, form);
while (!post.isDone)
{
yield return new WaitForSeconds(.3f);
}
if (!string.IsNullOrEmpty(post.text) string.Compare(post.text, “ok”) == 0)
{
result(true);
}
else
{
result(false);
}
post.Dispose();

Any idear?

If you’re using that exact code, the access token is invalid.