Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.