我正在尝试使用我网站中的表单将图像发布到 Facebook 相册。我知道我得到了正确的访问令牌,因为在没有 jQuery 和 AJAX 的情况下发布可以正常工作 - 但会将我重定向到我的网站之外。为了解决这个问题,我做了一个 jQuery AJAX 帖子,但这给了我一个我不明白的错误。
我正在使用:
<script type="text/javascript" src="../Components/JQUERY/jquery-1.4.2.min.js"></script>
<script type="text/javascript" src="../Components/JQUERY/jquery.validate.min.js"></script>
代码是:
获取访问令牌并准备要发布到的 URL(没关系,不使用 jQuery 发布就是将图片上传到 Facebook):
//....Facebook code for getting the access token...// // This is the URL that was originally in the form's action tag// $image_url= "https://graph.facebook.com/" . $ALBUM_ID . "/photos?" . "access_token=" .$access_token;
表单的 HTML:
<form name="myform" id="myform" enctype="multipart/form-data" action="" method="POST"> Please choose a photo: <input name="source" type="file"><br/> Say something about this photo: <br/> <textarea id="fbText" name="message" rows="4" cols="47"> </textarea><br/><br/> <input type="submit" name="submit" value="Upload"/><br/> </form> <div id="results"></div>
jQuery代码:
<script type="text/javascript"> $(document).ready(function(){ $("#myform").validate({ debug: false, rules: { message: "required" }, messages: { message: "Please insert text." }, submitHandler: function(form) { // do other stuff for a valid form $.post('<?php echo $image_url ?>', $("#myform").serialize(), function(data) { $('#results').html(data); }); } }); }); </script>
按上传按钮给我以下错误:
我究竟做错了什么?谢谢。