Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I'm a totally beginner for IOS.
Recently, I found that Flipboard may embedded Facebook post
but I don't know how it do that.
Can anybody help me?
You can download the facebook API for android either as a .jar file or as complete source. After that you will have to create a facebook app on facebook which will be doing the task to get you data from facebook. Once you create a facebook app you will be given some oauth information which will be a key and a link I suppose. Copy those in your downloaded facebook API source and you are ready to go. Ask users their username and password for facebook via some textbox and send it to the facebook API code. You can also use facebook API's internal function to get user info which will be good for privacy concerns from user point of view.
After you have successfully coded everything...Voila...you'll have the news feed as data and you can show it to user the way u want.
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 years ago.
Improve this question
I am trying to implement an IOS application. The need of my application is to access the documents(pdf,photo etc) from DropBox & Google drive. I am new in iPhone development ,so i have no idea about access the document from DropBox & Google Drive.
If anybody know please help me . Thanks in advance.
Here are the API's that you would need to get started with Dropbox and Google Drive.
https://www.dropbox.com/developers-v1/core/sdks/ios
https://developers.google.com/drive/ios/
CloudRail might be an alternative. It allows you to integrate both services via the same API which is pretty simple.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
How do I use the user's native Facebook login in my app?
When I try to authenticate, it loads a web view instead of using their native login.
The SDK will use Facebook's app to login if it is installed. A web view is used when the native app is not available. Take a look [here], it is fairly straightforward: https://developers.facebook.com/docs/facebook-login/ios/v2.2. Just be sure to check the prerequisites, as it is fairly easy to forget about setting up your app's .plist file.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I am making an App where on the first screen i have login and register buttons. When i click on register it will ask for user finger prints and then user details. From here I want to store finger prints and user details in database.
And when he clicks on login. Its will open biometric scanner if finger prints matches the database finger prints he will move forward..
Is there any way is it possible to store finger prints in database. If so please give some reference links that guide me towards my goal..
Thanks in Advance
You can not access the fingerprints directly. This is restricted by Apple on purpose (privacy protection). So you will not be able to store them in your database neither.
Touch ID
Your app can now use Touch ID to authenticate a user before accessing some or all content in your app. Fingerprint data is protected and never accessed by iOS or other apps. [...]
Source: iOS 8 for Developers by Apple
Authentication is still possible using the API, but that will only return values like Authenticated and Not Authenticated, with no information about the fingerprint itself.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I am working on creating ios app for iphone where users have an access to my wordpress site can only login to. My login address is www.example.com/wp-login.php How should I implement it? I am a beginner in ios development.
EDIT: The app will only show user's info and previously submitted forms. It will not show any other content from the website. Once user's are authorized they will be able to fill out new form and submit or see their previously submitted forms.
It depends what you want to do.
Normally we should not display only a Website content within a WebView, for this you can Use Safari and add a Basic Authentication to your Website.
Apps normally fetch content from a API on the Webserver to retrieve Content, parse the Data and then display it natively.
For Wordpress you can write your own Plugin for that, or use an existing one.
This for the Content:
https://wordpress.org/plugins/json-api/
And this Plugin provides authentication support for WP:
https://wordpress.org/plugins/json-api-auth/
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I want to build mobile app on rhomobile.com/Rhodes Framework. This is completely new for me. I just want to make small app will have following functionality.
The app will provide FB/Twitter Login.
Once login the user can take picture and upload to cloud db or mongo and simultaneously share on FB/Twitter wall.
Also i want analytic for this. So if anybody has an idea regarding this pls. help me out.
I'm not quite sure how much details you are looking for, so here are some general information about what to do and references to the information you will need.
1) Login to Facebook/Twitter.
To provide FB/Twitter login you need to use the respective APIs. For FB I would suggest you take a look at their Mobile Web Tutorial (http://developers.facebook.com/docs/guides/mobile/web/) or Authentication documentation (http://developers.facebook.com/docs/authentication/) where it is described how you login.
2) Camera support and upload of photo to Facebook.
Providing camera support for your Rhodes application is quite easy and is described in the Device Capability section of the Rhomobile Documentation (http://docs.rhomobile.com/rhodes/device-caps#camera). They also have a code sample of how it works here.
Once you have taken the picture you should be able to upload it through the image-uri which you get in the take_picture response.
How you can upload pictures to FB is described on their developer site. You can for example take a look at the following guide which is posted on FB - How-To: Use the Graph API to Upload Photos to a user's profile.
3) Analytics.
There are many ways to get analytic data about your application. One way would be to use Google Analytics (http://code.google.com/intl/da/apis/analytics/).