Flex 3 中的微型 URL api Automati
我正在flex 3和action script 3中使用twitter应用程序,当用户编写我的应用程序时,这在文本区域中自动将http地址更改为短地址,但我不知道在文本中找到地址,你可以帮助我请..
提前致谢
i am working in application of twitter in flex 3 and action script 3 , this in the text area when the user write my application automatically change http address to a short address but i don't know find the address within the text you can help me please..
thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您可以使用 http 网络服务,请尝试使用 bit.ly 提供的服务来缩短 url
http://code.google.com/p/bitly-api/wiki/ApiDocumentation#/shorten
http://api.bit.ly/shorten?version=2.0.1&longUrl=' + textarea.text}" result="doSomething(event)"/>
if you can use http webservices try to use one provided by bit.ly to shorten url
http://code.google.com/p/bitly-api/wiki/ApiDocumentation#/shorten
http://api.bit.ly/shorten?version=2.0.1&longUrl=' + textarea.text}" result="doSomething(event)"/>
我从来没有使用过这个API,所以在使用之前先研究一下: http: //userflex.wordpress.com/2008/05/29/tinyurl-flex-library/
它看起来像一组简单的实用函数:TinyURL.create(url,callbackFunction);
祝你好运,
杰里米
I've never used this api, so research before use: http://userflex.wordpress.com/2008/05/29/tinyurl-flex-library/
It looks like a set of utility functions a simple as: TinyURL.create(url,callbackFunction);
Best of luck,
Jeremy