I make Application with webview to my Application. when i want to Login some pages and i want to login saites the confirm Message is displayed.and it says that do you want the browser to remember this password. I don't want to show this Message and i dont want to click on never
what should I do to stop showing this Message and what should i do to Not displayed this Message
you can see the see screenshot
http://i.stack.imgur.com/1kulj.jpg
You can turn this behavior off with the WebSettings.setSavePassword() API. Please see http://developer.android.com/reference/android/webkit/WebSettings.html#setSavePassword(boolean)
Related
I am trying to use 'intercom-rails' in my app. I followed the installation from here : https://github.com/intercom/intercom-rails. Now Im able to see the chat icon and chat.
However, if I login, the chat icon disappears. It does not appear even after logging out.
Any help ?
It probably means something is causing the Intercom JavaScript code to crash or not report the needed information to be activated.
First, check your browser JavaScript console for errors. If there is something wrong when rendering the Intercom widget, it will show up there.
Then, I suggest that you look into your HTML code using the "View Source" function on your browser and take a look at how the Intercom Javascript code is being rendered when the chat icon does not appear.
You should see something like this:
When I try log in in my application with Facebook, I have page in Safari browser with text: You already have authorization PPFF. Or Are you want to have authorization in PPFF?
Also there is the gear on top of the text instead of the application logo. How I can change gear on my logo and type Application name instead of PPFF?
This has been reported earlier and is by design. This dialog will always show up when you start the login flow for a user that is already logged into your app.
You also can't change the appearance of the dialog unfortunately.
You can find the original report here: https://developers.facebook.com/bugs/1024399197610999/
Thanks.
Hello I have a custom URL to open an app with a link. It works in the browser. But I want to send an email that another user can click the link in the email and the app will be started. Does anybody know a solution?
It is not possible to send an email with the link (myApp://). It always shows the the link as blank text.
Or does anyone know another solution to transfer data between an app to a other users app?
I think you need to write the link in href html tag
i.e. open my app
another solution is to try to add any text after the double slash i.e. myApp://open
I have an UIWebView in my iOS app, which displays a very long web page. If the page fails to load for some reason, I display an alert in my webView:didFailLoadWithError: method. However, it is possible that user would tap some link BEFORE the page is fully loaded, and UIWebView treats that as an error as well, which I want to ignore silently. Is there any way to find out that a page loading error originates from user tapping a link?
As user1135469 suggested, error.code seems to be the key. It's NSURLErrorCancelled when the user taps the link, and it's safe to just ignore this error code.
I used to have my users add my app by clicking a link that was emailed to them, or by using the add page tab dialog. Both are described here: http://developers.facebook.com/docs/appsonfacebook/pagetabs/
As of Friday (3-Aug-2012) neither of these seem to be working. The user simply sees a page that says, "An error occurred. Please try again later." with no further explanation. Even clicking the example URL on the above mentioned page produces the same error. I get this error for any app, while signed on with any facebook profile.
Has anyone experienced this, and if so, do you know what needs to be changed so that it will work again?
This commonly happens when your app is missing settings in the Page Tab section of the Basic (Page Tab URL, Secure Page Tab URL) settings.
It will also happen if your app has Sandbox mode enabled.
I've filed a ticket to get the example link on that documentation page corrected (thanks).