Re: [tryton-dev] non authenticated end point

2016-11-28 Thread Vincent Bastos
On Thursday, November 24, 2016 at 11:20:02 PM UTC+10, Cédric Krier wrote: > > On 2016-11-24 22:44, Vincent Bastos wrote: > > ok, so for now I can create an sms_queue module but without updating > the > > status of an sms. > > I do not think you need a queue [1]. You can also use the 2 phase

Re: [tryton-dev] non authenticated end point

2016-11-24 Thread Cédric Krier
On 2016-11-24 22:44, Vincent Bastos wrote: > ok, so for now I can create an sms_queue module but without updating the > status of an sms. I do not think you need a queue [1]. You can also use the 2 phase commit like the sendmail_transactional does. [1] https://mikehadlow.blogspot.nl/2012/04/data

Re: [tryton-dev] non authenticated end point

2016-11-24 Thread Oscar Alvarez
On 24/11/16 07:44, Vincent Bastos wrote: On Thu, Nov 24, 2016 at 10:34 PM, Cédric Krier > wrote: On 2016-11-24 22:22, Vincent Bastos wrote: > On Thu, Nov 24, 2016 at 10:17 PM, Sergi Almacellas Abellana < > se...@koolpi.com > w

Re: [tryton-dev] non authenticated end point

2016-11-24 Thread Vincent Bastos
On Thu, Nov 24, 2016 at 10:34 PM, Cédric Krier wrote: > On 2016-11-24 22:22, Vincent Bastos wrote: > > On Thu, Nov 24, 2016 at 10:17 PM, Sergi Almacellas Abellana < > > se...@koolpi.com> wrote: > > > > > Hi Vincent, > > > > > > El 24/11/16 a les 13:11, Vincent Bastos ha escrit: > > > > > >> Is it

Re: [tryton-dev] non authenticated end point

2016-11-24 Thread Cédric Krier
On 2016-11-24 22:22, Vincent Bastos wrote: > On Thu, Nov 24, 2016 at 10:17 PM, Sergi Almacellas Abellana < > se...@koolpi.com> wrote: > > > Hi Vincent, > > > > El 24/11/16 a les 13:11, Vincent Bastos ha escrit: > > > >> Is it possible to create an end point on the server that does not > >> require

Re: [tryton-dev] non authenticated end point

2016-11-24 Thread Sergi Almacellas Abellana
El 24/11/16 a les 13:22, Vincent Bastos ha escrit: ok thanks. I had not thought of this. I'm not sure how to actually implement this in terms of putting it together in a module - if that even makes sense. Can I simple create a flask application in my module? Of course, but you should take care t

Re: [tryton-dev] non authenticated end point

2016-11-24 Thread Vincent Bastos
On Thu, Nov 24, 2016 at 10:17 PM, Sergi Almacellas Abellana < se...@koolpi.com> wrote: > Hi Vincent, > > El 24/11/16 a les 13:11, Vincent Bastos ha escrit: > >> Is it possible to create an end point on the server that does not >> require authentication? >> >> I would like to implement a queue to s

Re: [tryton-dev] non authenticated end point

2016-11-24 Thread Sergi Almacellas Abellana
Hi Vincent, El 24/11/16 a les 13:11, Vincent Bastos ha escrit: Is it possible to create an end point on the server that does not require authentication? I would like to implement a queue to send SMS's using the Twilio API. When you send a request to send a message, it is possible to set a callb

[tryton-dev] non authenticated end point

2016-11-24 Thread Vincent Bastos
Is it possible to create an end point on the server that does not require authentication? I would like to implement a queue to send SMS's using the Twilio API. When you send a request to send a message, it is possible to set a callback url [1] with a parameter in the domain rather than as a par