人人,微博和百度喜欢的按钮只使用HTML(无Javascript)

前端之家收集整理的这篇文章主要介绍了人人,微博和百度喜欢的按钮只使用HTML(无Javascript)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在一个在中国市场销售的网站上工作,我想知道是否有一种方法可以为 Renren(类似Facebook),Weibo(类似于Twitter)和 Baidu Like(类似于Google的1号)创建“分享”按钮)只使用HTML.

例如,对于Facebook,Twitter和Google的1,您将使用以下内容

> http://twitter.com/share?url=http://example.com&text=Description
> http://www.facebook.com/sharer.php?u=http://example.com
> https://plusone.google.com/_/+1/confirm?hl=en&url=http://example.com

我知道Renren使用以下内容

> http://share.renren.com/share/buttonshare.do?link=http://example.com&title=Description

但是,我很想知道微博和百度喜欢的HTML只是URL.

以下是共享按钮的Javascript版本的文档:

> http://wiki.dev.renren.com/wiki/Xn:share-button
> http://open.weibo.com/sharebutton
> http://share.baidu.com/like/get-codes

解决方法

希望这可以帮助未来的人;这里是如何实现人力,微博和百度的HTML只共享/像按钮喜欢/空间/论坛/书签:

人人网

如上所述,请使用以下URL格式在Renren上共享链接

> http://share.renren.com/share/buttonshare.do?link=http://example.com&title=Description

微博

以下URL格式将允许您以与Twitter相同的方式发布到您的微博帐户:

> http://service.weibo.com/share/share.php?url=http://example.com&appkey=&title=Description&pic=&ralateUid=&language=zh_cn

百度

百度有多个可以发布的服务;与这篇文章相关的是百度喜欢,但是我提供了百度空间,论坛和书签的URL,以供参考:

要像Facebook / Google 1一样使用链接,请使用以下URL结构:

> http://like.baidu.com/set?buttontype=small&cb=bdShare.ajax._callbacks.bd4bb141b&index=0&url=http://example.com

我使用数据包分析器跟踪上述URL,据我所知,百度Like必须从引用页面或至少是引用域调用.回调函数bd4bb141b似乎不是特定于任何域或用户ID.

请注意,我还没有彻底测试以下URL结构:

>要在百度空间上共享链接,请使用以下URL结构:http://apps.hi.baidu.com/share/?url=http://example.com&title=Description
>要在百度铁饼(论坛)上分享一个链接,请使用以下URL结构:http://tieba.baidu.com/i/app/open_share_api?link=http://example.com
>要保存到百度仓(书签)的链接,请使用以下URL结构:http://cang.baidu.com/do/add?it=Description&iu=http://example.com

另请参考,FeedBurner的一个很好的中国选择是FeedSky.

原文链接:https://www.f2er.com/html/230723.html

猜你在找的HTML相关文章