时间:2021-05-19
本文实例讲述了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程序设计有所帮助。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
今天下了个新浪微博的API研究研究,目前实现了发布微博功能,包括带图片的微博。为了安全,新浪微博的API中并没有提供用微博帐号密码登录的功能,而是采用OAuth
继续前面的文章《新浪微博OAuth认证和储存的主要过程详解》,现在我们就使用它来发布微博。我们已经将用户新浪微博的oauth_token和oauth_secre
手机新浪微博如何发送好友圈?手机新浪微博是新浪官方特别打造的,集文字、图片、视频、音频、LBS于一身的全球化社交应用软件,下面小编就告诉大家手机新浪微博好友圈发
Java模拟新浪和腾讯自动登录并发送微博功能分享给大家,供大家参考,具体内容如下1.准备工作只是登录无需申请新浪和腾迅的开发者账号,如果需要发送微博功能,需要申
有时候在使用新浪微博发私信的时候会遇到失败的情况,这是为什么呢?该怎么解决呢?今天小编就将新浪微博私信发送失败的原因和解决方法告诉大家新浪微博发送私信失败解决办