ios integration google drive and dropbox like naukri app [closed] - ios

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.

Related

How do I use native Facebook login for my app? [closed]

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.

How to implement login to wordpress site via iphone app? [closed]

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/

How do I get Facebook post like Flipboard [closed]

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.

Track Running Apps [closed]

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 9 years ago.
Improve this question
I want to create iPhone app which is in background then it will track record of all app which user opens.
i.e when my app is in background and user opens music,safari,photo app
then i want record like, music,safari,photo.
can we write names in file ?
This cannot be done. Apple is very restrictive when it comes to things like this.
The way I understand it is this:
Apple limits the API to your app (you can't affect other apps or the OS in any major way-this stop malicious behaviour)
Your app is 'sandboxed' meaning it's on it's own, it can't see if Safari has any pages open, or monitor what game you just exited out of or anything like that. Your app is in effect, isolated.
You can write anything to a file, just getting what you want to write (in this case) is not possible
tl;dr. No, your app is in it's own little 'sandbox' it can't monitor anything but itself, Apple doesn't allow it nor do they provide any programming library to do so.

Mobile app using Rhodes Framework [closed]

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/).

Resources