本文实例讲述了java实现新浪微博Oauth接口发送图片和文字的方法。分享给大家供大家参考。具体如下:
基于网上很多人利用新浪api开发新浪微博客户端的时候遇到无法发图片的问题,很多人卡在了这一布。现将代码呈上,希望能帮到一些朋友。
/** * 发表带图片的微博 * @param token * @param tokenSecret * @param aFile * @param status * @param urlPath * @return */ public String uploadStatus(String token, String tokenSecret, File aFile, String status, String urlPath) { httpOAuthConsumer = new DefaultOAuthConsumer(consumerKey,consumerSecret); httpOAuthConsumer.setTokenWithSecret(token,tokenSecret); String result = null; try { URL url = new URL(urlPath); HttpURLConnection request = (HttpURLConnection) url.openConnection(); request.setDoOutput(true); request.setRequestMethod("POST"); HttpParameters para = new HttpParameters(); para.put("status", URLEncoder.encode(status,"utf-8").replaceAll("\\+", "%20")); String boundary = "---------------------------37531613912423"; String content = "--"+boundary+"\r\nContent-Disposition: form-data; name=\"status\"\r\n\r\n"; String pic = "\r\n--"+boundary+"\r\nContent-Disposition: form-data; name=\"pic\"; filename=\"image.jpg\"\r\nContent-Type: image/jpeg\r\n\r\n"; byte[] end_data = ("\r\n--" + boundary + "--\r\n").getBytes(); FileInputStream stream = new FileInputStream(aFile); byte[] file = new byte[(int) aFile.length()]; stream.read(file); request.setRequestProperty("Content-Type", "multipart/form-data; boundary="+boundary); //设置表单类型和分隔符 request.setRequestProperty("Content-Length", String.valueOf(content.getBytes().length + status.getBytes().length + pic.getBytes().length + aFile.length() + end_data.length)); //设置内容长度 httpOAuthConsumer.setAdditionalParameters(para); httpOAuthConsumer.sign(request); OutputStream ot = request.getOutputStream(); ot.write(content.getBytes()); ot.write(status.getBytes()); ot.write(pic.getBytes()); ot.write(file); ot.write(end_data); ot.flush(); ot.close(); request.connect(); if (200 == request.getResponseCode()) { result = "SUCCESS"; } } catch (FileNotFoundException e1) { e1.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } catch (OAuthMessageSignerException e) { e.printStackTrace(); } catch (OAuthExpectationFailedException e) { e.printStackTrace(); } catch (OAuthCommunicationException e) { e.printStackTrace(); } return result; }
希望本文所述对大家的java程序设计有所帮助。
本文向大家介绍django接入新浪微博OAuth的方法,包括了django接入新浪微博OAuth的方法的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了django接入新浪微博OAuth的方法。分享给大家供大家参考。具体分析如下: 最近将网站和新浪微博进行了整合,思路很简单,就是将页面内容和新浪微博联系起来,一个独立内容的页面对于一条微博,自然评论系统只需要使用微博的评论即可。 然后,用户需
本文向大家介绍jQuery实现鼠标选文字发新浪微博的方法,包括了jQuery实现鼠标选文字发新浪微博的方法的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了jQuery实现鼠标选文字发新浪微博的方法。分享给大家供大家参考,具体如下: 最近注意到新浪博客有个小功能,就是当鼠标选中一段文字时会浮现一个小图片,点击这个图片可以把选中内容发送到新浪微博,一时兴起昨晚就写了一个Demo玩了一下,代码超
本文向大家介绍使用新浪微博API的OAuth认证发布微博实例,包括了使用新浪微博API的OAuth认证发布微博实例的使用技巧和注意事项,需要的朋友参考一下 继续前面的文章《新浪微博OAuth认证和储存的主要过程详解》,现在我们就使用它来发布微博。 我们已经将用户新浪微博的oauth_token和oauth_secret保存到 $_SESSION['oauth_token']=$result['oa
本文向大家介绍php新浪微博登录接口用法实例,包括了php新浪微博登录接口用法实例的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了php新浪微博登录接口用法。分享给大家供大家参考。具体分析如下: 在做微博登陆之前是需要申请到APP KEY 和App Secret,这个的申请方式请去 open.weibo.com 申请相关内容. 在官网也有相关的开发文档http://open.weibo.c
本文向大家介绍JS+CSS实现仿新浪微博搜索框的方法,包括了JS+CSS实现仿新浪微博搜索框的方法的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了JS+CSS实现仿新浪微博搜索框的方法。分享给大家供大家参考。具体实现方法如下: 希望本文所述对大家的javascript程序设计有所帮助。
基于Java的新浪微博客户端:简洁易用、实现了基本的功能。更多开源参看http://binary.duapp.com/?p=244