Im trying to integrate Linkedin network in my iphone app.I searched sample codes and i found one sample code in github
https://github.com/ResultsDirect/LinkedIn-iPhone
I downloaded the sample code and provided consumer and secret keys.It works good.When im trying to do this in my app,its not working.So many errors saying rdEngine.h--no such directory or file.But i imported linkedin library xcode to my app.How to import frameworks and liraries to my app?What i have to do to integrate linkedin in iphone?I want to update status of a linkedin of a user from iphone directly and i want to display the latest status of a linkedin in iphone .Please suggest me any possible ways to do this...Also tell me what are the steps i need to follow to do this.Thank you in advance..
You can find all the material and sample from this Link github repo,and you have to set up your header Path in your xcode environment as below to remove some hmac.h file not found type error
Go to the project > Targets > Build Settings
Search Header Search Paths
Add
$(SDKROOT)/usr/include/libxml2
It is working in my iphone application with LinkedIn status update,Hope it will help you
As I have already suggest you that set your HEADER SEARCH PATH, is it correct
Related
I want to open app from an external link, for example a link that I get in iMessage, the question is, I should use deepLink or universalLink, I want to open the app when I tap on the link, then having ability to read the url in the app is enough for me.
And for this matter, I should set a Json file in the website as well? something like this:
https://developer.apple.com/documentation/xcode/supporting-universal-links-in-your-app
It's a bit confusing for me, could anyone gives me a real example and steps?
Thank you
Yes, basically both the app itself and the website need to be aware that you are going to be using Universal Links. There are a few steps to do this:
First you need to include the website as an Associated Domain inside of your Xcode project.
Then for the website you do have to create what is known as the apple-app-site-association file. This lets the the website know which apps are associated with the website.
This tutorial has a step by step on How to setup your website to work Universal Links.
Lastly you will have to have to update your AppDelegate file to handle when a Universal link opens the application.
More info can be found in the official Apple Documentation on Creating Universal Links.
I am Beginner in iPhone. I wants Integrate Dropbox Api in my App for upload a .pdf file and image. But after long googling in not find any good tutorial for it.
Please provide me any tutorial links. or any example link where i can get information about how to integrate dropbox and upload file.
Many Thanks
Requirements:
You need the 4.0 version of the iPhone SDK. The version of your XCode should
be at least 3.2.3.
You need to have registered as a Dropbox application with mobile access. You should have a consumer key and secret.
You need to download the dropbox sdk
Refer to this link for more details and example.
I am new iPhone developer and I am trying to create an iphone application. I need Gdata for that application. I find GData.xcodeproj but I cant download it. I get this code on this link :- http://code.google.com/p/gdata-objectivec-client/source/browse/#svn%2Ftrunk%2FSource%2FGData.xcodeproj can anybody help me..??
I want to add the GData api from google to receive all the links in a youtube channel. I've followed this tutorial http://mischneider.net/?p=377#comment-1277 but the folder headers is not created. I've been trying the whole day to get it running but without succes. The Google tutorial is not really clear to beginners.
Thnx!
I used this tutorial. You must include SystemCongiguration framework and make all of this tutorial.
In my iPhone app there is a requirement for Twitter API integration.
Here the problem comes when I integrate the Twitter+ OAuth SDK into my app. It gives errors as shown below in the screen shot.
I have added the xml2.dylib library to my app but still it gives some errors.
I got the answer.
I am posting it here because I don't want to put answer to my own question to earn reputation :). I made a silly mistake.
I didn't add the "Header Search Paths" in project settings as "\usr\include\xml2".
Remove the header file(s) which is importing "xmlversion.h", "tree.h", "xmlIO.h" from your application target.
In one of my project, I am using MGTwitterEngine libray. I was facing the same problem while inegrating the library with my application. Then I read following link which helped me to solve the problem
http://aralbalkan.com/3133