将内容分享到社交平台

分享到微信微博QQ空间JS代码大全

将优质内容分享到社交平台,让更多用户了解,目前已经成为网站,App,微信公众号等必备的功能,本文搜集了常见的分享js代码,供查阅参考。

1.分享到微信,易信

分享到微信,易信比较简单,贴上分享链接的二维码就可以了。

二维码生成地址:http://cli.im/ (网上随便搜的)

2.分享到新浪微博

代码如下:

var _shareUrl = ‘http://v.t.sina.com.cn/share/share.php?&appkey=895033136‘;     //真实的appkey ,必选参数
    _shareUrl += ‘&url=‘+ encodeURIComponent(_url||document.location);     //参数url设置分享的内容链接|默认当前页location,可选参数
    _shareUrl += ‘&title=‘ + encodeURIComponent(_title||document.title);    //参数title设置分享的标题|默认当前页标题,可选参数
    _shareUrl += ‘&source=‘ + encodeURIComponent(_source||‘‘);
    _shareUrl += ‘&sourceUrl=‘ + encodeURIComponent(_sourceUrl||‘‘);
    _shareUrl += ‘&content=‘ + ‘utf-8‘;   //参数content设置页面编码gb2312|utf-8,可选参数
    _shareUrl += ‘&pic=‘ + encodeURIComponent(_pic||‘‘);  //参数pic设置图片链接|默认为空,可选参数
    window.open(_shareUrl,‘_blank‘,‘toolbar=no,menubar=no,scrollbars=no,resizable=1,location=no,status=0,‘ + ‘width=‘ + _width + ‘,height=‘ + _height + ‘,top=‘ + (screen.height-_height)/2 + ‘,left=‘ + (screen.width-_width)/2);

appkey为必填参数。

详情请参考:http://open.weibo.com/wiki/ShareCode

3.分享到QQ空间

代码如下:

var _shareUrl = ‘http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?‘;
    _shareUrl += ‘url=‘ + encodeURIComponent(_url||document.location);   //参数url设置分享的内容链接|默认当前页location
    _shareUrl += ‘&showcount=‘ + _showcount||0;      //参数showcount是否显示分享总数,显示:‘1‘,不显示:‘0‘,默认不显示
    _shareUrl += ‘&desc=‘ + encodeURIComponent(_desc||‘分享的描述‘);    //参数desc设置分享的描述,可选参数
    _shareUrl += ‘&summary=‘ + encodeURIComponent(_summary||‘分享摘要‘);    //参数summary设置分享摘要,可选参数
    _shareUrl += ‘&title=‘ + encodeURIComponent(_title||document.title);    //参数title设置分享标题,可选参数
    _shareUrl += ‘&site=‘ + encodeURIComponent(_site||‘‘);   //参数site设置分享来源,可选参数
    _shareUrl += ‘&pics=‘ + encodeURIComponent(_pic||‘‘);   //参数pics设置分享图片的路径,多张图片以"|"隔开,可选参数
    window.open(_shareUrl,‘_blank‘,‘width=‘+_width+‘,height=‘+_height+‘,top=‘+(screen.height-_height)/2+‘,left=‘+(screen.width-_width)/2+‘,toolbar=no,menubar=no,scrollbars=no,resizable=1,location=no,status=0‘);

详情请参考:http://connect.qq.com/intro/share/

4.分享到百度贴吧

代码如下:

var _shareUrl = ‘http://tieba.baidu.com/f/commit/share/openShareApi?‘;
    _shareUrl += ‘title=‘ + encodeURIComponent(_title||document.title);  //分享的标题
    _shareUrl += ‘&url=‘ + encodeURIComponent(_url||document.location);  //分享的链接
    _shareUrl += ‘&pic=‘ + encodeURIComponent(_pic||‘‘);    //分享的图片
    window.open(_shareUrl,‘_blank‘,‘width=‘+_width+‘,height=‘+_height+‘,left=‘+(screen.width-_width)/2+‘,top=‘+(screen.height-_height)/2+‘,toolbar=no,menubar=no,scrollbars=no, resizable=1,location=no,status=0‘);

详情请参考:http://share.baidu.com/code/advance

5.分享到豆瓣

代码如下:

var _shareUrl = ‘http://shuo.douban.com/!service/share?‘;
    _shareUrl += ‘href=‘ + encodeURIComponent(_url||location.href);    //分享的链接
    _shareUrl += ‘&name=‘ + encodeURIComponent(_title||document.title);    //分享的标题
    _shareUrl += ‘&image=‘ + encodeURIComponent(_pic||‘‘);    //分享的图片
    window.open(_shareUrl,‘_blank‘,‘width=‘+_width+‘,height=‘+_height+‘,left=‘+(screen.width-_width)/2+‘,top=‘+(screen.height-_height)/2+‘,toolbar=no,menubar=no,scrollbars=no,resizable=1,location=no,status=0‘);

6.分享到腾迅微博

代码如下:

var _shareUrl = ‘http://v.t.qq.com/share/share.php?‘;
    _shareUrl += ‘title=‘ + encodeURIComponent(_title||document.title);    //分享的标题
    _shareUrl += ‘&url=‘ + encodeURIComponent(_url||location.href);    //分享的链接
    _shareUrl += ‘&appkey=5bd32d6f1dff4725ba40338b233ff155‘;    //在腾迅微博平台创建应用获取微博AppKey
    _shareUrl += ‘&site=‘ + encodeURIComponent(_site||‘‘);   //分享来源
    _shareUrl += ‘&pic=‘ + encodeURIComponent(_pic||‘‘);    //分享的图片,如果是多张图片,则定义var _pic=‘图片url1|图片url2|图片url3....‘
    window.open(_shareUrl,‘_blank‘,‘width=‘+_width+‘,height=‘+_height+‘,left=‘+(screen.width-_width)/2+‘,top=‘+(screen.height-_height)/2+‘,toolbar=no,menubar=no,scrollbars=no,resizable=1,location=no,status=0‘);

详情请参考:http://dev.t.qq.com/websites/share/

7.分享到人人网

代码如下:

var _shareUrl = ‘http://share.renren.com/share/buttonshare.do?‘;
    _shareUrl += ‘link=‘ + encodeURIComponent(_url||location.href);   //分享的链接
    _shareUrl += ‘&title=‘ + encodeURIComponent(_title||document.title);     //分享的标题
    window.open(_shareUrl,‘_blank‘,‘width=‘+_width+‘,height=‘+_height+‘,left=‘+(screen.width-_width)/2+‘,top=‘+(screen.height-_height)/2+‘,toolbar=no,menubar=no,scrollbars=no,resizable=1,location=no,status=0‘);

其他的分享内容会从页面中去抓取。

想了解更多,可参考:http://dev.renren.com/website/?widget=rrshare&content=use

8.分享到开心网

代码如下:有两种写法,第一种写法也是跳转到 http://www.kaixin001.com/rest/records.php这个链接地址。

var _shareUrl = ‘http://www.kaixin001.com/repaste/share.php?‘;
    _shareUrl += ‘rtitle=‘ + encodeURIComponent(_title||document.title);   //分享的标题
    window.open(_shareUrl,‘_blank‘,‘width=‘+_width+‘,height=‘+_height+‘,left=‘+(screen.width-_width)/2+‘,top=‘+(screen.height-_height)/2+‘,toolbar=no,menubar=no,scrollbars=no,resizable=1,location=no,status=0‘);
var _shareUrl = ‘http://www.kaixin001.com/rest/records.php?‘;
    _shareUrl += ‘url=‘ + encodeURIComponent(_url||location.href);    //分享的链接
    _shareUrl += ‘&content=‘ + encodeURIComponent(‘分享的文字‘);    //需要分享的文字,当文字为空时,自动抓取分享网址的title
    _shareUrl += ‘&pic=‘ + encodeURIComponent(_pic||‘‘);     //分享的图片,多个使用半角逗号分隔
    _shareUrl += ‘&showcount=0‘;    //是否显示分享数,显示:‘1‘,不显示:‘0‘
    _shareUrl += ‘&style=11‘;      //显示的样式,必选参数
    _shareUrl += ‘&aid=‘ + encodeURIComponent(_site||‘‘);    //显示分享来源
    window.open(_shareUrl,‘_blank‘,‘width=‘+_width+‘,height=‘+_height+‘,left=‘+_left+‘,top=‘+_top+‘,toolbar=no,menubar=no,scrollbars=no,resizable=1,location=no,status=0‘);

想了解更多,可参考:http://open.kaixin001.com/document.php?type=records#code

9.分享到facebook

代码如下:

var _shareUrl = ‘http://www.facebook.com/sharer/sharer.php?‘;
    _shareUrl += ‘u=‘ + encodeURIComponent(_url||location.href);    //分享的链接
    _shareUrl += ‘&t=‘ + encodeURIComponent(_title||document.title);    //分享的标题
    window.open(_shareUrl,‘_blank‘,‘width=‘+_width+‘,height=‘+_height+‘,left=‘+_left+‘,top=‘+_top+‘,toolbar=no,menubar=no,scrollbars=no,resizable=1,location=no,status=0‘);

10.分享到Twitter

代码如下:

var _shareUrl = ‘http://twitter.com/intent/tweet?‘;
    _shareUrl += ‘url=‘ + encodeURIComponent(_url||location.href);    //分享的链接
    _shareUrl += ‘&text=‘ + encodeURIComponent(_title||document.title);    //分享的标题
    window.open(_shareUrl,‘_blank‘,‘width=‘+_width+‘,height=‘+_height+‘,left=‘+_left+‘,top=‘+_top+‘,toolbar=no,menubar=no,scrollbars=no,resizable=1,location=no,status=0‘);

由于网络原因,可能分享不了。

11.案例

  1 <!doctype html>
  2 <html>
  3 <head>
  4 <meta http-equiv="Content-Type" Content="text/html; charset=utf-8;">
  5 <title>分享到微信微博空间等第三方平台的JS代码</title>
  6 <meta name="author" content="rainna" />
  7 <meta name="keywords" content="rainna‘s js lib" />
  8 <meta name="description" content="js" />
  9 <style>
 10 *{margin:0;padding:0;}
 11 img{border:0 none;}
 12 body{background:#eee;}
 13
 14 .m-box{width:800px;margin:0 auto;padding:20px;background:#fff;}
 15 .m-box p{margin:0 0 10px;}
 16 .m-box .icn a{display:block;width:55px;height:35px;background:url(‘http://l.bst.126.net/rsc/img/weibo.png?035‘) no-repeat;}
 17 .m-box .icn .wb1{background-position:10px -216px;}
 18 .m-box .icn .wb2{background-position:-190px -216px;}
 19 .m-box .icn .wb3{background:url(http://l.bst.126.net/rsc/img/postshare/tieba24.png) 15px 0 no-repeat;}
 20 .m-box .icn .wb4{background-position:-88px -215px;}
 21 .m-box .icn .wb5{background-position:-138px -216px;}
 22 .m-box .icn .wb6{background-position:-245px -216px;}
 23 .m-box .icn .wb7{background-position:-300px -216px;}
 24 .m-box .icn .wb8{background-position:-355px -216px;}
 25 .m-box .icn .wb9{background-position:-415px -215px;}
 26 </style>
 27 </head>
 28
 29 <body>
 30 <div class="m-box">
 31     <p>分享到微信,易信:</p>
 32     <div class="icn"><img width="200" src="http://cli.clewm.net/qrcode/2015/01/21/2031452178.png" /></div>
 33 </div>
 34
 35 <div class="m-box">
 36     <p>分享到新浪微博:<a href="http://open.weibo.com/wiki/ShareCode" target="_blank">http://open.weibo.com/wiki/ShareCode</a></p>
 37     <div class="icn"><a href="#" class="wb1" onclick="shareToSinaWB(event)"></a></div>
 38 </div>
 39
 40 <div class="m-box">
 41     <p>分享到QQ空间:<a href="http://connect.qq.com/intro/share/" target="_blank">http://connect.qq.com/intro/share/</a></p>
 42     <div class="icn"><a href="#" class="wb2" onclick="shareToQzone(event)"></a></div>
 43 </div>
 44
 45 <div class="m-box">
 46     <p>分享到百度贴吧:<a href="http://share.baidu.com/code/advance" target="_blank">http://share.baidu.com/code/advance</a></p>
 47     <div class="icn"><a href="#" class="wb3" onclick="shareToTieba(event)"></a></div>
 48 </div>
 49
 50 <div class="m-box">
 51     <p>分享到豆瓣:</p>
 52     <div class="icn"><a href="#" class="wb4" onclick="shareToDouban(event)"></a></div>
 53 </div>
 54
 55 <div class="m-box">
 56     <p>分享到腾迅微博:<a href="http://dev.t.qq.com/websites/share/" target="_blank">http://dev.t.qq.com/websites/share/</a></p>
 57     <div class="icn"><a href="#" class="wb5"  onclick="shareToQQwb(event)"></a></div>
 58 </div>
 59
 60 <div class="m-box">
 61     <p>分享到人人网:<a href="http://dev.renren.com/website/?widget=rrshare&content=use" target="_blank">http://dev.renren.com/website/?widget=rrshare&content=use</a></p>
 62     <div class="icn"><a href="#" class="wb6" onclick="shareToRenren(event)"></a></div>
 63 </div>
 64
 65 <div class="m-box">
 66     <p>分享到开心网:<a href="http://open.kaixin001.com/document.php?type=records#code" target="_blank">http://open.kaixin001.com/document.php?type=records#code</a></p>
 67     <div class="icn"><a href="#" class="wb7" onclick="shareToKaixin(event)"></a></div>
 68 </div>
 69
 70 <div class="m-box">
 71     <p>分享到facebook:</p>
 72     <div class="icn"><a href="#" class="wb8" onclick="shareToFacebook(event)"></a></div>
 73 </div>
 74
 75 <div class="m-box">
 76     <p>分享到Twitter:</p>
 77     <div class="icn"><a href="#" class="wb9" onclick="shareToTwitter(event)"></a></div>
 78 </div>
 79
 80 <script>
 81 var _title,_source,_sourceUrl,_pic,_showcount,_desc,_summary,_site,
 82     _width = 600,
 83     _height = 600,
 84     _top = (screen.height-_height)/2,
 85     _left = (screen.width-_width)/2,
 86     _url = ‘http://traveliceland.lofter.com/post/352b58_579d8e7‘,
 87     _pic = ‘http://m3.img.srcdd.com/farm4/d/2015/0113/11/6AE3FEBE500857BF82CA97E8F03DD6A8_B500_900_500_411.jpeg‘;
 88
 89
 90 //分享到新浪微博
 91 function shareToSinaWB(event){
 92     event.preventDefault();
 93
 94     var _shareUrl = ‘http://v.t.sina.com.cn/share/share.php?&appkey=895033136‘;     //真实的appkey,必选参数
 95     _shareUrl += ‘&url=‘+ encodeURIComponent(_url||document.location);     //参数url设置分享的内容链接|默认当前页location,可选参数
 96     _shareUrl += ‘&title=‘ + encodeURIComponent(_title||document.title);    //参数title设置分享的标题|默认当前页标题,可选参数
 97     _shareUrl += ‘&source=‘ + encodeURIComponent(_source||‘‘);
 98     _shareUrl += ‘&sourceUrl=‘ + encodeURIComponent(_sourceUrl||‘‘);
 99     _shareUrl += ‘&content=‘ + ‘utf-8‘;   //参数content设置页面编码gb2312|utf-8,可选参数
100     _shareUrl += ‘&pic=‘ + encodeURIComponent(_pic||‘‘);  //参数pic设置图片链接|默认为空,可选参数
101     window.open(_shareUrl,‘_blank‘,‘width=‘+_width+‘,height=‘+_height+‘,top=‘+_top+‘,left=‘+_left+‘,toolbar=no,menubar=no,scrollbars=no, resizable=1,location=no,status=0‘);
102 }
103
104 //分享到QQ空间
105 function shareToQzone(event){
106     event.preventDefault();
107
108     var _shareUrl = ‘http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?‘;
109     _shareUrl += ‘url=‘ + encodeURIComponent(_url||document.location);   //参数url设置分享的内容链接|默认当前页location
110     _shareUrl += ‘&showcount=‘ + _showcount||0;      //参数showcount是否显示分享总数,显示:‘1‘,不显示:‘0‘,默认不显示
111     _shareUrl += ‘&desc=‘ + encodeURIComponent(_desc||‘分享的描述‘);    //参数desc设置分享的描述,可选参数
112     _shareUrl += ‘&summary=‘ + encodeURIComponent(_summary||‘分享摘要‘);    //参数summary设置分享摘要,可选参数
113     _shareUrl += ‘&title=‘ + encodeURIComponent(_title||document.title);    //参数title设置分享标题,可选参数
114     _shareUrl += ‘&site=‘ + encodeURIComponent(_site||‘‘);   //参数site设置分享来源,可选参数
115     _shareUrl += ‘&pics=‘ + encodeURIComponent(_pic||‘‘);   //参数pics设置分享图片的路径,多张图片以"|"隔开,可选参数
116     window.open(_shareUrl,‘_blank‘,‘width=‘+_width+‘,height=‘+_height+‘,top=‘+_top+‘,left=‘+_left+‘,toolbar=no,menubar=no,scrollbars=no,resizable=1,location=no,status=0‘);
117 }
118
119 //分享到百度贴吧
120 function shareToTieba(event){
121     event.preventDefault();
122
123     var _shareUrl = ‘http://tieba.baidu.com/f/commit/share/openShareApi?‘;
124     _shareUrl += ‘title=‘ + encodeURIComponent(_title||document.title);  //分享的标题
125     _shareUrl += ‘&url=‘ + encodeURIComponent(_url||document.location);  //分享的链接
126     _shareUrl += ‘&pic=‘ + encodeURIComponent(_pic||‘‘);    //分享的图片
127     window.open(_shareUrl,‘_blank‘,‘width=‘+_width+‘,height=‘+_height+‘,left=‘+_left+‘,top=‘+_top+‘,toolbar=no,menubar=no,scrollbars=no,resizable=1,location=no,status=0‘);
128 }
129
130 //分享到豆瓣
131 function shareToDouban(event){
132     event.preventDefault();
133
134     var _shareUrl = ‘http://shuo.douban.com/!service/share?‘;
135     _shareUrl += ‘href=‘ + encodeURIComponent(_url||location.href);    //分享的链接
136     _shareUrl += ‘&name=‘ + encodeURIComponent(_title||document.title);    //分享的标题
137     _shareUrl += ‘&image=‘ + encodeURIComponent(_pic||‘‘);    //分享的图片
138     window.open(_shareUrl,‘_blank‘,‘width=‘+_width+‘,height=‘+_height+‘,left=‘+_left+‘,top=‘+_top+‘,toolbar=no,menubar=no,scrollbars=no,resizable=1,location=no,status=0‘);
139 }
140
141 //分享到腾迅微博
142 function shareToQQwb(event){
143     event.preventDefault();
144
145     var _shareUrl = ‘http://v.t.qq.com/share/share.php?‘;
146     _shareUrl += ‘title=‘ + encodeURIComponent(_title||document.title);    //分享的标题
147     _shareUrl += ‘&url=‘ + encodeURIComponent(_url||location.href);    //分享的链接
148     _shareUrl += ‘&appkey=5bd32d6f1dff4725ba40338b233ff155‘;    //在腾迅微博平台创建应用获取微博AppKey
149     _shareUrl += ‘&site=‘ + encodeURIComponent(_site||‘‘);   //分享来源
150     _shareUrl += ‘&pic=‘ + encodeURIComponent(_pic||‘‘);    //分享的图片,如果是多张图片,则定义var _pic=‘图片url1|图片url2|图片url3....‘
151     window.open(_shareUrl,‘_blank‘,‘width=‘+_width+‘,height=‘+_height+‘,left=‘+_left+‘,top=‘+_top+‘,toolbar=no,menubar=no,scrollbars=no,resizable=1,location=no,status=0‘);
152 }
153
154 //分享到人人网
155 function shareToRenren(event){
156     event.preventDefault();
157
158     var _shareUrl = ‘http://share.renren.com/share/buttonshare.do?‘;
159     _shareUrl += ‘link=‘ + encodeURIComponent(_url||location.href);   //分享的链接
160     _shareUrl += ‘&title=‘ + encodeURIComponent(_title||document.title);     //分享的标题
161     window.open(_shareUrl,‘_blank‘,‘width=‘+_width+‘,height=‘+_height+‘,left=‘+_left+‘,top=‘+_top+‘,toolbar=no,menubar=no,scrollbars=no,resizable=1,location=no,status=0‘);
162 }
163
164 //分享到开心网
165 function shareToKaixin(event){
166     event.preventDefault();
167
168     var _shareUrl = ‘http://www.kaixin001.com/rest/records.php?‘;
169     _shareUrl += ‘url=‘ + encodeURIComponent(_url||location.href);    //分享的链接
170     _shareUrl += ‘&content=‘ + encodeURIComponent(‘分享的文字‘);    //需要分享的文字,当文字为空时,自动抓取分享网址的title
171     _shareUrl += ‘&pic=‘ + encodeURIComponent(_pic||‘‘);     //分享的图片,多个使用半角逗号分隔
172     _shareUrl += ‘&showcount=0‘;    //是否显示分享数,显示:‘1‘,不显示:‘0‘
173     _shareUrl += ‘&style=11‘;      //显示的样式,必选参数
174     _shareUrl += ‘&aid=‘ + encodeURIComponent(_site||‘‘);    //显示分享来源
175     window.open(_shareUrl,‘_blank‘,‘width=‘+_width+‘,height=‘+_height+‘,left=‘+_left+‘,top=‘+_top+‘,toolbar=no,menubar=no,scrollbars=no,resizable=1,location=no,status=0‘);
176 }
177
178 function shareToKaixin2(event){
179     event.preventDefault();
180
181     var _shareUrl = ‘http://www.kaixin001.com/repaste/share.php?‘;
182     _shareUrl += ‘rtitle=‘ + encodeURIComponent(_title||document.title);   //分享的标题
183     window.open(_shareUrl,‘_blank‘,‘width=‘+_width+‘,height=‘+_height+‘,left=‘+_left+‘,top=‘+_top+‘,toolbar=no,menubar=no,scrollbars=no,resizable=1,location=no,status=0‘);
184 }
185
186 //分享到facebook
187 function shareToFacebook(event){
188     event.preventDefault();
189
190     var _shareUrl = ‘http://www.facebook.com/sharer/sharer.php?‘;
191     _shareUrl += ‘u=‘ + encodeURIComponent(_url||location.href);    //分享的链接
192     _shareUrl += ‘&t=‘ + encodeURIComponent(_title||document.title);    //分享的标题
193     window.open(_shareUrl,‘_blank‘,‘width=‘+_width+‘,height=‘+_height+‘,left=‘+_left+‘,top=‘+_top+‘,toolbar=no,menubar=no,scrollbars=no,resizable=1,location=no,status=0‘);
194 }
195
196
197 //分享到Twitter
198 function shareToTwitter(event){
199     event.preventDefault();
200
201     var _shareUrl = ‘http://twitter.com/intent/tweet?‘;
202     _shareUrl += ‘url=‘ + encodeURIComponent(_url||location.href);    //分享的链接
203     _shareUrl += ‘&text=‘ + encodeURIComponent(_title||document.title);    //分享的标题
204     window.open(_shareUrl,‘_blank‘,‘width=‘+_width+‘,height=‘+_height+‘,left=‘+_left+‘,top=‘+_top+‘,toolbar=no,menubar=no,scrollbars=no,resizable=1,location=no,status=0‘);
205 }
206 </script>
207 </body>
208 </html>
时间: 2024-10-11 03:17:05

将内容分享到社交平台的相关文章

在Android中使App高速、简单地支持新浪微博、微信、QQ、facebook等十几个主流社交平台的分享功能

前言 在如今的APP或者游戏中,分享功能差点儿已经成为标配.分享功能不但能够满足用户的需求.也能够为产品带来很多其它的用户,甚至能够对用户的行为.活跃度.年龄段等情况进行数据统计,使得软件公司能够对产品进行更精准的定位.今天我们就来简单剖析市场上一款优秀的分享SDK以及其集成过程.这款分享SDK就是友盟的社会化分享组件. 友盟社会化分享,帮助移动应用高速具备分享.登录.评论.喜欢等社交功能,提升用户粘度.助力产品推广,并提供实时.全面的社会化数据统计分析服务. 很多其它请訪问友盟社会化组件官网.

在Android中使App快速、简单地支持新浪微博、微信、QQ、facebook等十几个主流社交平台的分享功能

前言 在现在的APP或者游戏中,分享功能几乎已经成为标配.分享功能不但能够满足用户的需求,也能够为产品带来更多的用户,甚至可以对用户的行为.活跃度.年龄段等情况进行数据统计,使得软件公司可以对产品进行更精准的定位.今天我们就来简单剖析市场上一款优秀的分享SDK以及其集成过程,这款分享SDK就是友盟的社会化分享组件. 友盟社会化分享,帮助移动应用快速具备分享.登录.评论.喜欢等社交功能,提升用户粘度.助力产品推广,并提供实时.全面的社会化数据统计分析服务. 基本概念 根据友盟的集成文档,我们对于友

从Facebook躺枪,看社交平台和媒体平台交集的禁区

近日,Facebook又"躺枪"了.德国司法部长赫科·玛斯表示,他认为Facebook应当被视为一家媒体公司,而非技术平台.但扎克伯格早在8月份虽然承认Facebook通过用户之间的关系向其提供新闻,并强调通过不同地方获取信息的优势,但他表示,"Facebook是一家科技公司,我们的任务是开发工具,而不是制作任何内容". 换句话说,扎克伯克不会让Facebook成为一家媒体公司,而是继续充当科技平台.与Facebook类似的是,微信这一社交平台也明确表示不会成为媒体

Android分享到微信等社交平台教程

在Android手机app上加入分享到微信等平台的功能,使用的是第三方的开源组件,友推SDK. 集成分为以下几个步骤: 1. 在友推官网注册,添加要集成友推sdk的 app信息,并获取appkey. 2.下载最新版的友推sdk包,包里提供了集成demo. 3.申请社交平台appkey 包括的社交平台有:微信.新浪微博.腾讯微博.QQ空间.QQ.微信好友.人人等. 4.引用友推库项目 将youtui-lib项目库和应用工程放在同一个目录下 5.把sdk中的youtui-share-demo工程里的

javascript社交平台分享-新浪微博、QQ微博、QQ好友、QQ空间、人人网

整理的五个社交平台的分享 <!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> <h2>分享</h2> <div id="sina">新浪微博</div>

[原创] 我在全球最大的同性社交平台那点事

本文作者:夏之冰雪,i春秋签约作家 <我在百度网盘上看到上万条车主个人信息,企业.政府高官信息.各种数据库和无穷无尽的盗版>,一时间,这篇文章就火了,火爆程度另百度猝不及防. 其实呢,这事真不能全怪百度,毕竟用户分享出去了.之所以引起这么大轰动,主要是因为用户的文件本身,什么数据都有,导致这次危害或者说恐慌,进行了放大. 每一次危机过去之后----普通人,只会对其津津乐道:有能力的人,会思考如何避免再次发生:而开拓者,则会洞察整个形势.   1. 百度网盘泄露事件留给了我们什么 百度事件发生,

友盟发布第一期国内主要社交平台活跃度数据,微信超越QQ领跑社交平台

“Be Social”已成为移动应用设计和运营的重中之重,社交平台的选择更是应用开发过程中的重要一环.友盟通过“社会化组件”产品服务开发者,同时长期观察和研究App的社会化行为和市场趋势.2014年第一季度,通过友盟在全国覆盖的7.8亿活跃的移动设备,我们发现,在国内开发者认知中,包括新浪微博.QQ空间在内的“老牌”社交平台仍有一定优势,但微信作为社交平台,其数据表现及重要性已整体超越QQ. 国内主要社交平台均有增长,微信整体超越QQ 根据友盟数据,自2014年1月中旬起,微信的整体用户(包括微

iOS的应用程序实现之间的内容分享

前言 我们在iOS的平台上想要实现不同应用之间的内容分享一般有几种常用方式: 一种第的英文通过AirDrop实现不同设备的应用之间文档和数据的分享; 第二种是给每个应用程序定义一个URL方案,通过访问指定了URL Scheme的一个URL,实现直接访问一个APP; 第三种是通过UIDocumentInteractionController或者是UIActivityViewController这两个个iOS SDK中封装好的类在App之间发送数据,分享数据和操作数据; 第四种是通过App Exte

揭秘国外社交平台的灰色利益链

近年来,随着互联网技术的快速发展,物联网这一领域也跟着水涨船高,各项具有应用意义的项目也在不断拓展,比如智能家居,视频监控系统等,身处千里之外,却能知悉家中的一举一动,这也体现了"万物互联"的概念.其中,作为物联网的终端节点,随着大众将目光逐步转移到物联网时,这些设备因自身的安全性问题也遭受到来自恶意攻击者的觊觎. 国际商业时报报道,不久前,黑客对互联网服务提供商Dyn的攻击,让包括Netflix.Facebook.Twitter及<卫报>在内的众多网站陷入瘫痪.网络安全公