thedarkcder
thedarkcder
Can not build using this PR I receive: Failed to load module 'SupportSDK' from RNZendesk
Anybody get the PR to work?
Me to - needed to update Xcode to latest. But I'm using another updated fork
There you go https://github.com/thanx/react-native-zendesk No offence jacky
I couldn't get many things to work properly with out upgrading. I had to upgrade to Catalina, now I need to figure out how to run my 32bit apps.
@vangapandushankar @Be1thaz0r Neither fixes work for me I have ensured the make install is successful and jar is placed under the correct path Is there anything else I need to...
@Be1thaz0r Figured it out My problem was was that i needed to change the default install path to /usr/ rather than the default /usr/local settting the `LD_LIBRARY_PATH` didn't work
Can you tell me how to use the accesstoken? I am still unauthorised when i tried to make a secure call with this in the header.
I figured this out. The token is signed so I had to get the unsigned value to make the secure call. ``` res.cookie('access-token', req.signedCookies['access_token']); res.cookie('userId', req.signedCookies['userId']); ```