Modifying Google OAuth2 login page - objective-c

Is it possible to modify or show a more iOS friendly login page from googles oauth2 services? I'm not sure if I have seen a modified on before but i can't find any information on it. Any help would be appreciated.

I think the only change you can do is to provide your own logo as described here: https://developers.google.com/youtube/2.0/developers_guide_protocol_oauth2#OAuth2_Register
To make the login process more like a part of your application it is possible to open the login page in an embedded browser instead of open it in Safari, but you will not be able to change how it looks.

Related

odoo allow existing user to signup using google login

I am trying to integrate a google login with my odoo website, I was successful in logging in new users but I was not able to login using existing user can anyone guide me if i had done anything wrong.
From the comments i am trying to include what i have done so far to trace down the issue.
I was able to setup login using google.
I was not able to login using google using existing user so after extensive search i found a solution like we need to send a reset password from settings for a existing user and it will work in-order to to make the google login work and I worked like charm but i don't know whether it is the perfect solution for the issue

Apache-creating custom login form

I'm trying to restrict access to a page on my Apache server, but I want Apache to display a custome login screen I've designed instead of the default splash screen to accept user credentials.
After searching on Google and examining the Apache documentation (which is very vague on how to do this) I'm still at a loss.
I suspect I can do this via a redirection, pointing at the location of my custom login screen but unsure as how to do this... If anyone has attempted this in the past, I would greatly appreciate some help.
Thanks,
Shaw

Facebook: webpage working as an app and a page

I want to make a webpage, that works as an APP (in facebook, iframe) and as a usual webpage too.
How can I accomplish this in a proper way?
Right now, I'm connecting to facebook as an APP with the PHP SDK: getLoginUrl(), then redirect the user to this url, blabla. Works fine if I'm in facebook, and using it as an app.
Problem is if the session is outdated, and I'm not looking this on facebook, this redirecting gets annoying, also: very unprofessional in my opinion...
Thanks in advance!
SOLVED: here's the solution for my specific problem:
It took me 1 change of line in the code, which is the following:
$canvaseurl = ($_SERVER['HTTP_REFERER'] == "https://apps.facebook.com/APPNAME/") ? "https://apps.facebook.com/APPNAME/": "https://MYWEBPAGE.hu/app/";
So I simply redirect to the url, where the user came from.
Pretty simple. :)
Once the person authorizes the application, you will be able to use either the iframe or the website, just so long as you don't force it to go back to the application page. I have used the Facebook PHP SDK and noticed that if you enter the actual location that is loading into the iframe it will stay on that page outside of the apps.facebook.com. However this is dependant on the settings you use. Try experimenting with it and see if that helps you.

How could I make sure that facebook reject my request for authentication plugin

About 2 weeks ago, the fb login button on my site was not working. At that time, my site was attacking by some robots.
Is that the reason why my login button was not working anymore?
How could I make sure?
Is there any way like email or some form page to contact with the fb manager?
Thanks a lot.
Pokey
if the bots attacking your website didn't affect the content of your page (the Page you store the javascript calling for the Login for Facebook). it wouldn't make sense not to work. Because the login button access the facebook server, if the javascript part on your page of the Facebook Login is correct, even with attacks it would work perfectly. So maybe it's something else. You need to give more details!

Twitter Connect Get Auth Code Without Refreshing the Source Page

Is there any way with Twitter to get the auth code without having to go through Twitter and being redirected back to the source page ( my website ) ?
I am aksing this because we need to connect the user to Twitter, but without refreshing the current page the user is on.
Is this possible with Javascript, jQuery or whatever?
PLease help me out.
Thanks
Using whatever, Python and Java in this case. I ran into this article a few days ago you'll find interesting:
Automated Browserless OAuth Authentication for Twitter
quote from the article:
This article describes how to use the OAuth 3-legged protocol with a
headless browser like HtmlUnit to get tokens from twitter without user
intervention.