AddThis 动态 URL

发布于 2024-11-03 08:11:18 字数 125 浏览 1 评论 0原文

我向某个外部站点发送 POST,该站点会输出一个 URL,我使用 bit.ly 截断该 URL。我想以某种方式获取该 URL 并将其用于 AddThis 中的自定义 URL 字段。

关于我该如何解决这个问题有什么想法吗?

I do a POST to some external site, that site spits out a URL, which I truncate using bit.ly. I want to somehow get that URL and use it for the custom URL fields in AddThis.

Any ideas on how I can go about this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

花开雨落又逢春i 2024-11-10 08:11:18

查看 jQuery ajax 方法 获取 url

take a look at jQuery ajax methods to get the url

晒暮凉 2024-11-10 08:11:18

在 AJAX 调用返回 URL

http://support.addthis.com/customer/portal/articles/381263-addthis-client-api#rendering-js

此代码片段应该可以帮助您入门:

addthis.button(document.getElementById('my-button'), {  }, { url: bitlyUrl });

I would render the button with javascript after the AJAX call returns the URL

http://support.addthis.com/customer/portal/articles/381263-addthis-client-api#rendering-js

This snippet should get you started:

addthis.button(document.getElementById('my-button'), {  }, { url: bitlyUrl });
玻璃人 2024-11-10 08:11:18

我尝试了很多上述解决方案,但没有一个对我有用,采用了类似这样的 $('.addthis_toolbar').attr('addthis:url', 'http://google.com');< /code>

为此,您需要 AddThis div 看起来像这样

I tried a lot of the above solutions and none worked for me, went with something like this $('.addthis_toolbar').attr('addthis:url', 'http://google.com');

For this to work you'll need the AddThis div to look like this

<div class="addthis_toolbox addthis_default_style addthis_32x32_style share-bar" addthis:url="">

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文