HI All

I am using MGTwitterEngine oAuth and LinkedIn iOS sdk in my Iphone application with facebook-ios-sdk

TwitterEngine : https://github.com/bengottlieb/Twitter-OAuth-iPhone

LinkedInIphone : https://github.com/ResultsDirect/LinkedIn-iPhone

Both integrated well separately, But when I have used both in application then error coming

FB + Twitter = working well

FB + LinkedIn = Working Well

FB + Twitter + LinkedIn = Not Working

and giving error

Command /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2 failed with exit code 1

Please help me where I am wrong.

Related post

EDIT

Error Transcript Text File

Build butterfli of project butterfli with configuration Debug

Ld build/Debug-iphonesimulator/butterfli.app/butterfli normal i386
cd /Users/pratgupta/Desktop/Settinglinkedin/10_mar_butterfli
setenv MACOSX_DEPLOYMENT_TARGET 10.6
setenv PATH "/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin"
/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2 -arch i386 -isysroot /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1.sdk -L/Users/pratgupta/Desktop/Settinglinkedin/10_mar_butterfli/build/Debug-iphonesimulator "-L/Users/pratgupta/Desktop/Settinglinkedin/10_mar_butterfli/Twitter+OAuth/Libraries & Headers" -F/Users/pratgupta/Desktop/Settinglinkedin/10_mar_butterfli/build/Debug-iphonesimulator -filelist /Users/pratgupta/Desktop/Settinglinkedin/10_mar_butterfli/build/butterfli.build/Debug-iphonesimulator/butterfli.build/Objects-normal/i386/butterfli.LinkFileList -mmacosx-version-min=10.6 -all_load -Xlinker -objc_abi_version -Xlinker 2 -framework Foundation -framework UIKit -framework CoreGraphics -lOAuth -lxml2 /Users/pratgupta/Desktop/Settinglinkedin/10_mar_butterfli/LinkedInClientLibrary/build/Debug-iphonesimulator/libLinkedInClientLibrary.a -o /Users/pratgupta/Desktop/Settinglinkedin/10_mar_butterfli/build/Debug-iphonesimulator/butterfli.app/butterfli

ld: duplicate symbol _EstimateBas64EncodedDataSize in /Users/pratgupta/Desktop/Settinglinkedin/10_mar_butterfli/LinkedInClientLibrary/build/Debug-iphonesimulator/libLinkedInClientLibrary.a(Base64Transcoder.o) and /Users/pratgupta/Desktop/Settinglinkedin/10_mar_butterfli/Twitter+OAuth/Libraries & Headers/libOAuth.a(Base64Transcoder.o)
collect2: ld returned 1 exit status
Command /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.2 failed with exit code 1

Amit Battan

link|improve this question

64% accept rate
feedback

3 Answers

up vote 1 down vote accepted

@amit as i have already said EstimateBas64EncodedDataSize this function is define in 2 source file... 1 definition source file is coming from LinkedIn source and 1 definition is coming from file which is source of twitter... you need to search EstimateBas64EncodedDataSize in your project and remove that one out of two particular package in which these function is defined and most probably it is Base64Encoding related files which are added twice in your project makes compiler confuse on which definition to use for that particular function...

link|improve this answer
@mihir according to Transcript text file .. Base64Transcoder.o is in libLinkedInClientLibrary.a and libOAuth.a.. how I remove from it... I tried to remove the 4 files from MGTwitterEngine (NSData+64.h/m, NSString+UUID.h/m), but it not help – Amit Battan Mar 11 '11 at 5:29
This is a little tricky problem... you need to rebuild the libLinkedInClientLibrary.a library... with libOAuth.a added in that project and those files which contains the EstimateBas64EncodedDataSize function removed from the linkedIn source... are you getting my point... ? – mihir mehta Mar 11 '11 at 5:36
yes I understand the problem a little bit ... but I don't know how we rebuild libLinkedInClientLibrary.a ...... Is it possible to use directly the files in stead of libLinkedInClientLibrary.a as like twitter files – Amit Battan Mar 11 '11 at 5:40
yes it is possible... it is also possible to rebuild the library... just download the source code and use in the target there should be option of libLinkedInClientLibrary.a remove those base 64 files... add libOAuth.a in the project and build the libLinkedInClientLibrary.a again... and yes it is possible to use source file directly... without using libLinkedInClientLibrary.a – mihir mehta Mar 11 '11 at 5:53
as we have 2 folder for linkedin sdk LinkedInClientLibrary and OAuthConsumeriPhoneLib …. and Base64Transcoder.h is imported into OAuthConsumeriPhoneLib/OAuthConsumer/OAHMAC_SHAISignature.m – Amit Battan Mar 11 '11 at 6:28
show 15 more comments
feedback

The basic issue is that both our LinkedIn library and Ben Gottlieb's Twitter client include the same OAuthConsumer code. In fact (as the README says) the code in LinkedIn-iPhone was literally copied from his project, with his changes.

That being the case, it should be possible to get this to work by removing our copy of the code (the entire OAuthConsumeriPhoneLib folder). You may also need to either change the #import lines in our sources, or your project's header search paths, to get our code to find the OAuthConsumer headers from his copy of the code.

(I acknowledge that this is a pain. But we wanted to be sure that our code would build out of the box, without needing to install other stuff.)

link|improve this answer
I done one thing that is ... I remove the library files of linkedin sdk.. and add the source files of it with oAuth files from twiiter sdk... then it works ok for linkedin i.imgur.com/cXLXU.png i.imgur.com/ntV9G.png ....then I integrate all twitter code then project run ok without error but for twitter login interface it shows PAGE NOT FOUND ..i.imgur.com/8a1ua.png – Amit Battan Mar 14 '11 at 6:22
feedback

'duplicate symbol' means one of your classes is #import'ing something twice that it shouldn't. If you look carefully, libLinkedInClientLibrary and libOAuth both symbolicate the same method '_EstimateBas64EncodedDataSize'. Check your #imports.

link|improve this answer
according to Transcript text file .. Base64Transcoder.o is in libLinkedInClientLibrary.a and libOAuth.a.. how I remove from it... I tried to remove the 4 files from MGTwitterEngine (NSData+64.h/m, NSString+UUID.h/m), but it not help – Amit Battan Mar 11 '11 at 5:29
feedback

Your Answer

 
or
required, but never shown

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