Re: Revigniter Sessions

2017-12-15 Thread Tom Glod via use-livecode
you got it Alex..thats exactly what I want to do . brilliant ...check header for cookie..get cookie. got it. Thank You!!! On Fri, Dec 15, 2017 at 6:57 PM, Alex Tweedly via use-livecode < use-livecode@lists.runrev.com> wrote: > Hold on - you guys are getting confused - or maybe you're

Re: RESTful PUT error

2017-12-15 Thread Sean Cole (Pi) via use-livecode
Actually, your json needs to also include the name as a requirement, looking at the post format for 'Persons'. So it would be something like: Put "{ 'name': 'John Smith' " & lf & " 'phone': '555-555-' }" into tJSON replace "'" with quote in tJSON Put "https://api.pipedrive.com/v1/persons/1?ap

Re: RESTful PUT error

2017-12-15 Thread Sean Cole (Pi) via use-livecode
Hi Andrew, I've been doing a whole heap of this just recently so have gained more experience in this than I would have hoped for :( In other words, I had hoped it would have been easier. especially working with oAuth procedures which ended up as a rolling nightmare for me these last few weeks. He

Re: RESTful PUT error

2017-12-15 Thread Alex Tweedly via use-livecode
On 15/12/2017 17:19, Andrew Bell via use-livecode wrote: They also tested updating the phone value themselves via API, and were successful. I'd ask them for the sample code they used to do this update, and see if that gives us a clue. -- Alex. ___

Re: Revigniter Sessions

2017-12-15 Thread Alex Tweedly via use-livecode
Hold on - you guys are getting confused - or maybe you're just getting me confused :-) :-) On the server side, Tom wants to use revIgniter session support - that should be just fine. revIgniter (or indeed LC Server) doesn't know, or care, if you are using a standard browser, a revBrowser insi

At this point, what's the shortest path to an iOS/Android app?

2017-12-15 Thread Geoff Canyon via use-livecode
I have an app that I want to put into the app stores. I don't want to charge for it. It's a super simple memory game, it took just a few hours to build. There's nothing complex about it, just a handful of buttons, a few fields, and a couple sliders. It's been a while since I investigated -- If I w

Re: RESTful PUT error

2017-12-15 Thread Andrew Bell via use-livecode
I tried suggestions from several users (on and off the list), but nothing has worked for me. After contacting Pipedrive tech support, I got the typical IT response of "it works for us" as they blamed LiveCode. They suggested that somehow using regex would fix the issue, but I'm not sure how

Re: Revigniter Sessions

2017-12-15 Thread Tom Glod via use-livecode
Thanks Bob, thats what I suspected as wellI guess I have to create my own session handler, or maybe I can still user rev-igniter's session handling via database only and ignore the cookiewe shall see. On Fri, Dec 15, 2017 at 10:33 AM, Bob Sneidar via use-livecode < use-livecode@lists.runre

Re: Revigniter Sessions

2017-12-15 Thread Bob Sneidar via use-livecode
If the LC browser doesn't support cookies, probably nowhere. Session cookies are kept in memory, and therefore likely inaccessible. Bob S > On Dec 15, 2017, at 07:29 , Tom Glod via use-livecode > wrote: > > Hi everyone, this may be a dumb question.but > > When I download a URL (from in

Revigniter Sessions

2017-12-15 Thread Tom Glod via use-livecode
Hi everyone, this may be a dumb question.but When I download a URL (from inside LC Standalone), which is a (LC Server Page) that generates a cookie, where does the cookie get saved? Is it accessible to me? I'm working on integrating LC Standalone with a Postgress DB via LC Server. I'd like t