在flex3中添加这个api
提供了一个 api
在一个 Flex 应用程序中,我必须实现 addthis api,这意味着我必须提供在 facebook、twitter 等社交媒体上共享应用程序的选项, addthis.com
bt 我不知道如何处理这个问题,我仍在使用 flex3,因为我的项目是在 flex3 中,
你能知道如何使用这些共享吗api,进入flex,提前感谢
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来您应该从该站点的 API 文档页面开始:
http://www.addthis.com/help/api-overview
我不在所有人都熟悉该服务,但从文档来看,似乎有一个 jQuery API 和 jQuery lib 使用的类似 REST 的接口。
看起来您有两个选择:
如果您在浏览器中托管 Flex 应用程序,您可能会看到是否可以访问 jQuery 库以通过浏览器获取服务。
考虑使用他们直接在 Flex 中导出的类似 REST 的 API。您将使用 HTTPService 来访问 API:
http://help.adobe.com /en_US/FlashPlatform/reference/actionscript/3/mx/rpc/http/HTTPService.html
祝你好运!
It looks like you should start with the API Documentation page for the site:
http://www.addthis.com/help/api-overview
I am not at all familiar with the service, but from the docs, it seems that there is a jQuery API and a REST-like interface that the jQuery lib uses.
It seems like you have two options:
If you are hosting your flex app in the browser, you might see if you can access the jQuery library to get at the service via the browser.
Consider using the REST-like api that they have exported directly in Flex. You would use the HTTPService to access the API:
http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/mx/rpc/http/HTTPService.html
Good luck!