I am looking for a library which provides user login/signup UI for my iPhone/iPad app to connect with backend api.
I use devise_token_auth gem on Rails api side, but I guess I can handle auth part by coding, I am just looking for a handy UI library like ParseUI so I don't need to make it by myself.
I tried to search using github and http://cocoapods.wantedly.com/, but no luck yet.
Any suggestions?
Here's a library with built in Devise support for iOS: https://github.com/netguru/devise-ios
It turned out Cocoa Controls was the best for this porpose.
https://www.cocoacontrols.com/search?q=login
Related
I am trying to understand how I can authenticate my iOS app using github. I understand from the documentation, that I need to implement this using OAuth.
I also understood that in my github profile, I need to register a new OAuth application, the form to do that looks like this:
I don't understand what info I have to provide for Homepage URL and Authorization callback URL as I am building an iOS app and not a webapp that is actually hosted on some server.
I would suggest trying FireBase. It has an infrastructure to enable GitHub login specifically. Also, there are sufficient examples to create the app.
I’m building an app where i want to implement twitter login.I want to fetch user basic profile Information.
I am trying to integrate twitter functionality using Twitter outh library https://github.com/bengottlieb/Twitter-OAuth-iPhone.
And i found an tutorial on youtube https://www.youtube.com/watch?v=MlGI_vB0--o
which helps me how to integrate twitter into your project using above library,But problem is when i add the
Twitter+OAuth into my project it gives an error.
Error:/Users/rohit/Desktop/Master/Twitter+OAuth/MGTwitterEngine/MGTwitterEngineGlobalHeader.h:17:10: 'Cocoa/Cocoa.h' file not found
How can i handle this error,help is appreciated.
I have implemented quite a few third party for twitter integration . But STTwitter is the best https://github.com/nst/STTwitter Easy to use and serves all purpose
I want to include Gamification feature in my iOS app. want to achieve it through Gigya SDK.How is it possible? Is any good tutorial available for it?
The client-side gamification plugins (achievement, challenge status, leaderboards, notifications, user status) are only available for use within a web browser through javascript.
While it should be possible to include a web-view to display any of these plugins from inside your mobile app, most of these plugins do not make sense to use in a mobile context.
If you are interested in pursuing this functionality then you can include a web-view which hosts the web pages that load the gamification plugins, and then sync the web-view session through the use of the GSWebBridge class. Gigya has documentation on how this can be achieved with sample code.
If you are looking to award custom actions that are performed from within your app. This can be accomplished by making calls to gm.notifyAction to the Gigya API from your iOS code.
Other than that, if you are looking for a more out-of-the-box solution, then you should contact the support team at Gigya and have them file a Feature Request for you. Gigya doesn't currently offer an out-of-the-box solution to accomplish this, and there is no tutorial because of that.
I'm coding an app for iOS / WP7 / Android using PhoneGap and it has to allow the user to publish comments to its facebook wall / twitter or send it by e-mail.
What is the easy way to face these tasks? any common approach? maybe a plugin? I have seen some similar posts in stackoverflow but none of them seems to offer a plain solution for all platforms...
Thanks
Here's a nice one, it's a JQuery plugin that not only has a nice interface but also provides the implementation details (link) to actually share something on each one of those frameworks!
jQuery social media share
If you want more access (like FB Wall), you'll need to actually code against the FB SDK (in javascript, not that hard but tons of functionality!).
PS: I am not affiliated in any way to this plugin or to it's author
You can use JavaScript based API's to make calls from your native apps that are not platform specific (so you can implement the same code in several native apps).
For instance, here is a link to the Facebook JavaScript API: http://developers.facebook.com/docs/reference/javascript/
For sending email, you could allow your users to compose the email in your app, then use an AJAX call to send the data to your server where your server-side script can send the email.
here is a implemetation with javascript for facebook, email and twitter in a few lines of code: http://www.sebastianviereck.de/en/mobile-multi-share-implementation-with-jquery-mobile/
Is there any tutorial out there showing how to use OAuth on IPhone?I download it from Gitgub. I want to send a mesage from my app to twitter.How to implement this...Anybody help me to immlement this?Advance thanks
Another option: DETweetComposeViewController
It uses OAuth for iOS4 and the built-in Twitter features in iOS5.
sai, you might want to look at the Socialize SDK (http://www.getsocialize.com) which will help manage the entire Social Integration process (FB/Twitter) for you without needing to know OAuth. Oauth is kind of a pain.