I'm trying to use the AS3 Graph api to create an album and upload photos to it with a batch operation.
Here's my code and the error returned, it looks like the name property for the create album isn't being seen on the server side.
private function uploadPhotos(imageArray:Array):void{
var batch = new Batch();
var params0 = {name:'My Album', message:'My Album description'};
batch.add('/me/albums', itemComplete, params0, "POST");
var params1 = {image:imageArray[0], message:'me', fileName:'current_age'};
batch.add('/{result=My Album:$.body.id}/photos', itemComplete, params1, 'POST');
var params2 = {image:imageArray[1], message:'old me', fileName:'old_age'};
batch.add('/{result=My Album:$.body.id}/photos', itemComplete, params2, 'POST');
Facebook.batchRequest(batch, photoUploadHandler);
}
private function photoUploadHandler(result:Object):void {
trace("photoUploadHandler :: "+JSON.encode(result));
}
returns:
{
"data":
{
"error":
{
"type":"GraphBatchException",
"message":"Request 1 cannot depend on an unresolved request with name My Album. Requests can only depend on preceding requests"
}
},
"success":false,
"rawResult":"{
"error": {
"message": "Request 1 cannot depend on an unresolved request with name My Album. Requests can only depend on preceding requests",
"type": "GraphBatchException"
}
}
}
Is there anything I can do to submit batches with recognized dependancies, or do I have to go about this another way?