Kayako logo
Modifications & Addon Releases Modification guides and addons are posted here to share with the community. Do not post requests in here!

Notices

Reply
 
LinkBack Thread Tools Search this Thread Rating: Thread Rating: 10 votes, 5.00 average. Display Modes
  (#31) Old
BCS Comp Offline
New Member
 
BCS Comp's Avatar
 
Posts: 9
Join Date: Nov 2008
Location: Cincinnati, Ohio
Thumbs up 19-11-2008, 03:45 PM

Quote:
Originally Posted by craigbrass View Post
If you want your users to be able to login to Kayako (I STRONGLY discourage this on usability grounds) with their ModernBill username / password, you would need to setup a LoginShare which is detailed in the manual.
Thanks Craig.. i'll have a look at that section for sure...


I appreciate the reply...
Bill
   
Reply With Quote
  (#32) Old
yettyn Offline
New Member
 
Posts: 9
Join Date: Oct 2007
21-11-2008, 01:05 AM

Quote:
Originally Posted by craigbrass View Post
Correct. It is customer end only.
Yes got that ok, but what I want is when logging in at eSupport as user/customer login not only is looked up by LoginShare in xcart in this case, but a login at that location also takes place or the other way around. The 2 locations still being individually sites support.domain.com and shop.domain.com but login onto one will also have you logged in at the other.

I figure this could possibly be done with cURL and I figured it should be possible when logging in at xcart, it should also post the login data to eSupport. I have tried it a bit and get as far as the login is authenticated at eSupport, but still I cannot get it into the session created which still say 'isloggedin=0' although 'loginresult=1' in client_loginhandler.php - must be missing something in my post fields. This is what I send now:

Code:
$ch = curl_init();

curl_setopt($ch, CURLOPT_URL,"http://support.astrocalc.com/index.php");
curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.4)");
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS,
            "loginemail=$login&loginpassword=$password&_m=core&_a=login");

curl_exec ($ch);
curl_close ($ch);
Also I get the server IP in the session, wich I need to get around somehow but haven't got to that yet. Any ideas?
   
Reply With Quote
Reply

Tags
api, external, integration, link

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Kayako External API? KIK Developers & Code 8 26-11-2008 06:02 PM
Free Attachment Migration Tool [FREE - EXTERNAL LINK] craigbrass Modifications & Addon Releases 5 08-11-2008 09:54 AM
CRM Integration API nextcontact SupportSuite, eSupport and LiveResponse 11 24-02-2008 06:47 PM
Regarding the API (XML) for integration of kayako with other tools vineethshyam SupportSuite, eSupport and LiveResponse 5 28-11-2007 09:34 AM
API and 3rd Party Integration UberGreek SupportSuite, eSupport and LiveResponse 1 29-12-2006 05:39 PM



Powered by vBulletin® Version 3.7.5
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0
Help desk software by Kayako.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48