I have realized my image archive with MS Access and would like to use my MS Access database to generate in PICASA albums and upload images. My FACEBOOK code works fine, but not in PICASA.
AccessToken = "1234567890" GraphURL = https://picasaweb.google.com/data/feed/api/user/1234567890 mNAME = "Familie Mustermann" mBESCHREIBUNG = "Dieses Album zeigt Bilder der Familie Mustermann" Body = "title=" & mNAME & _ "&summary=" & mBESCHREIBUNG & _ "&access_token=" & AccessToken Dim xmlhttp As New MSXML2.XMLHTTP30 With xmlhttp .Open "POST", GraphURL, False .setRequestHeader "Content-Type", "multipart/form-data; " .send Body End With I get the error code 400 (bad request). How should I adjust my Facebook code ? -- You received this message because you are subscribed to the Google Groups "Google Picasa Web Albums API" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-picasa-data-api?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
