Opening an App from a WebPage - html

I am developing a web app which I need to open a particular app. I have found this site: http://handleopenurl.com/ which gives some of the app url. But there isn't the app that I want, which is PolyCom RealPresence.
How can I get any app url which is not in that site.
I have tried the following:
99845075 <!-- Works -->
New SMS Message <!-- Works -->
ITunes <!-- Works -->
PolycOM <!-- Do not Work -->
Thanks,
Mark

a Polycom rep says the only way to call in the app is IP dialing only (basic mode), or with alias or IP based (pro mode) - custom URL scheme to open the app and direct a specific call is not supported as of June 2013
see Polycom rep answer identical question here on their forums - http://community.polycom.com/t5/RealPresence-Mobile/Is-it-possible-for-the-RealPresence-Mobile-iOS-to-dial-URL/td-p/13480

Check out Implementing Custom URL Schemes in iOS App Programming Guide: Advanced App Tricks.
If the third party app in question implements a custom URL scheme, you need to figure out what it is and use that. Otherwise, I'm afraid you're out of luck.

Related

Facebook AS3 api - mobile login window missing cancel button

I am using this, somewhat outdated, library.
When i log in a webview loads the following url
https://graph.facebook.com/oauth/authorize?client_id=123456789&display=touch&redirect_uri=https://www.facebook.com/connect/login_success.html&type=user_agent&scope=publish_actions,user_friends
I get a working login page, but there is no cancel button. Am I using the wrong address, or is this something the library would be responsible for adding?
Regards,
Jacob
Do not use this library. It is not maintained any more, and wasn't updated since oct. 2011 ... It is broken.
I use the Facebook API in AIR using HTMLLoaders and URLLoaders. All the flow is documented on the facebook developper's pages. But it's not that easy.

Creating an Ipad app with static html,css & javascript

Let me explain the scenario first.
I have a simple static dashboard html page with 5 simple charts created with HTML5, CSS
and javascript.
It renders data from a static Json to display the charts.
Its is not online and running in my local system.
There are no back end code which connects to a database.
Now I want to convert this to an Ipad app where I can see the dasboard page without out internet connection.
Kindly provide me a best way to do this.
Regards,
Shanmugam
You can use Apache Cordova (or phonegap) for building native web applications for all major platforms using HTML 5 , CSS and JavaScript.
You can refer to this Blog post on how to easily port existing HTML5 based application to iOS and Android.
Additionally you can also check this link for some more insights.

URL Scheme fallback

Is it possible to have a fallback href?
I put an URL Scheme in a website, code below:
Tweet!
This sends out a Tweet with the app Tweetbot containing "test". If people haven't installed Tweetbot, nothing will happen clicking the link. Is there a way to do a fallback to the web version of twitter and/or different apps?
Thanks
I remember seeing similar questions regarding the tel:// URL scheme a while ago. Unfortunately, I don't think this is possible directly from a webpage, but check out this question as it may offer some useful hacks (such as using a setTimeout for if the scheme isn't present - I can't confirm that they work). My personal favorite answer there is from mrahman, who uses the Date().getTime() method so that users who do have the App won't get the message / be redirected.
I guess if your users are going to be using the functionality frequently then you could save their choice of whether to use the app or the web version.

How to integrate My public Domain website with Salesforce?

I want to integrate my company website with salesforce.com. How can I do this?
If you're looking for the web-to-lead feature for capturing leads on your site, here's the info:
"To start capturing Leads from your Web site, go to Setup -> Customize --> Leads --> Web-to-Lead."
http://www.salesforce.com/community/crm-implementation/custom-lead-functionality.jsp

Chrome Extensions

I'm starting the development of chrome extensions, i have read few tutorials but i still have few questions, like;
1) How to get the text of the page Like i want to in skype or google talk extesnion the number on any webpage are converted to PHONE LINK how can i do this?
2) How to perform authentication using the plugin like the google plus (gmail) checker, I want to do this for another website not gmail, i want to do this for me custom website.
Thanks
1) There are a number of ways to ways to find text on pages. Here is an example with jQuery.
2) Google has a tutorial for using OAuth from an extension. This should work with most OAuth providers. You can also use cookies or Basic Auth if you want something simpler.