xamarin.oauth /xamarin forms Facebook linkedin google authentification - visual-studio

I am new in Xamarin ,I am looking for a way to put facebook/linkedin/google authentication. I have looked at many tutorials but none of them is recent and there are not working well or there are obsolete.
Here is the tutorials, I have found: click to seeing the page
Do you know a recent and better one ?

There are many samples about how to authenticate users in facebook or google. And I find your article here in MSDN with a sample which runs in VS2015. Even though it's a little bit out of date, you can also find something useful.
You can also refer to the official documentation of Xamarin.OAuth and the sample here. Modify the information in Constants to your own's. This article specify how to register in Google and get the Client ID and Redirect URL.
You can read it more carefully then create your own UI to achieve authentication.

Related

How to retrieve posts from Google Currents using the Google API?

I'm trying to figure out if there is a way to retrieve all the posts of a community of Google Currents using the Google API, in order to store them automatically somewhere else. Unfortunately, I've found nothing that allows me to achieve that so far.
Do you know any way to do that? Google API related, or not.
So far, I've looked in the Google API docs but haven't found anything truly usefull. I might need to develop a script that retrieves on its own the posts. Seems like a lot of work.

How to put a Google login on my main login form as an option?

I just want to put an Google login on my main form login as an Alternative way of logging in to the Mob app that i was developing.I want on my main fomr to have a (Login with Google) but i dont have any idea how to do it. is there anyone can help me? this is only for educational purposes, i just want to enhance my programming skills.
I tried searching and Firebase auth always appears.
Firebase Auth is actually free to use for the auth section so it's not a bad option.
There are a lot of moving parts with this and learning by using Firebase as your core is a great way to get introduced without handling so much of the complications. If this is just for education my personal recommendation would be to learn Firebase methods first and then look into replacing it with your own implementation.
However, if you want to just use Google Auth using a native plugin and nothing else then there is a tutorial on IonicThemes.com which covers how to set it up.
You can read it here if you're fast:
https://ionicthemes.com/tutorials/about/ionic-google-login
This question will probably get deleted as it doesn't meet the guidelines to just post links to tutorials, but it's a lengthy process so I don't know what else StackOverflow expects me to offer in this instance. Perhaps just to vote to close your question.

Cannot find "Realtime Updates setting page under Facebook Apps Setting"

I am trying to get real time posts from a facebook page and the article http://trocolate.wordpress.com/2012/12/13/realtime-update-in-asp-net-mvc-facebook-template/ talks about a way to implement it in asp .net mvc with a facebook template. It has the below section
Subscribe to changes
There are two ways to subscribe to a class of objects: you can do manually from App Settings or you can do programmatically by codes. Here let’s pick the easy one. Go to the Realtime Updates setting page under Facebook Apps Setting. I cannot seem to find this page.
When I go to the Apps – Settings, I get Basic, Advanced and Migrations tabs. Please let me know if I have missed something.
thanks
I believe that article is outdated and now Facebook doesn't let you do that from Settings.
If you read the current documentation, it says "Real Time updates are subscribed to by using the /{app-id}/subscriptions Graph API edge." It doesn't mention any other way of making subscriptions.
Maybe you should do it programmatically.

Posts from Google+ community on the website

Im trying to figure out whether it's possible to show the posts of my google+ community on a website.
I read the Google+ Web API and HTTP API, but nothing seems to satisfy my request.
I know this is an absolute newbie question. But I appreciate any hint:
is it in general possible?
which API I have to use?
Thanks a lot!
The APIs do not provide support for getting any type of Google+ Community post even if they are public. In the past this worked, but it was never supported and has since stopped working.

Multi authorization with CodeIgniter

I have my own CodeIgniter webapp.
I want to add to my site the multi-authorization from Facebook, Google, Twitter and OpenID sites.
(like here - https://stackoverflow.com/users/login)
Is it possible with CodeIgniter?
P.S. I've found some extensions for CI, but they are single and there is no way to merge them.
Facebook uses oAuth2
Twitter uses oAuth
StackOverflow uses OpenID.
Merging 3 entirely different protocols is not easy work, which is why no easy solution exists. You'll have to get your hands dirty for this sadly.
The closest you'll get is:
https://github.com/elliothaughin/socialize
That is not tested and I'm not sure if Elliot ever got around to finishing it.
What is used in Stackoverflow is called OpenID. Knowing the name, you can search for OpenID+CI implementations and you'll find a couple of libraries out there, and I guess this is the latest one.

Resources