Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a Unity3D application who needs registration.
The user needs to register in the application. He can simply enter an email adress and a password. Those are used to access the application.
But i want to offer the possibility to connect with other existing account like facebook, gmail, twitter...
Is it possible ? Everything must be in the Unity App but can use http request.

share|improve this question
Is this going to run in the browser? – Phil Jun 18 '12 at 14:24
Yes, but there's only unity displayed on the page. – MaT Jun 19 '12 at 7:47

3 Answers

Give these links a try. I've not yet gotten around to integration with other federated systems, but I believe these links will give you most of what you need to get it started.

share|improve this answer
Thanks for your help ! – MaT Jun 20 '12 at 15:59

Facebook integration is going to be added in for iOS 6. In addition to the twitter integration they already have. It may be worth it to wait to implement this feature until there's a unity wrapper for the iOS 6 feature. Though, you'd still have do to something different for google.

share|improve this answer
Unfortunately, I need to build a Web App. – MaT Jun 25 '12 at 7:24
up vote 0 down vote accepted

Concerning Unity/Facebook, I used a very good tutorial:
http://www.paladinstudios.com/2011/11/15/facebook-and-unity-tutorial-part-one/
http://www.paladinstudios.com/2011/11/24/facebook-and-unity-tutorial-part-two/
http://www.paladinstudios.com/2011/12/06/facebook-and-unity-tutorial-part-three/

It uses the JavaScript Facebook Api and the usefull functions :

<UNITY> Application.ExternalCall("YourJavaFunction");
<JS>    getUnity().SendMessage("YourGameObject", "YourUnityFunction", yourdata);

Concerning Unity/Twitter I didn't found a way to directly contact Twitter with Unity. But I use TweetSharp with my asp.net c# Backend.
https://github.com/danielcrenna/tweetsharp
https://dev.twitter.com/docs

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.