◢███◤      ◢██◤                            ◢██◤                            
     ◢██◤       ◢██◤                            ◢██◤                             
    ◢██◤       ◢██◤                            ◢██◤                              
   ◢██◤       ◢██◤                            ◢██◤                               
  ◢██◤       ◢██◤                            ◢██◤                                
◢███◤       ◢██◤                            ◢██◤                          ◥██◣   
◥███       ◢█████◣    ◢████████◤ ◢███████◤ ◢██◤ ◢██◤                 ◢██◤   ██◣  
 ███      ◢███████◣        ◢██◤ ◢██◤ ◢██◤ ◢███████◤                 ◢██◤    ███  
 ███     ◢██◤  ◢██◤ ◢████████◤ ◢██◤      ◢█████◣                   ◢██◤     ███  
 ███    ◢██◤  ◢██◤ ◢██◤  ███◤ ◢██◤ ◢██◤ ◢██◤◥███◣                 ◢██◤      ███  
 ◥██   ◢██◤  ◢██◤ ◢████████◤ ◢███████◤ ◢██◤  ◥███◣               ◢██◤       ███◣ 
  ◥██◣                                                          ◢██◤       ◢███◤ 
                                 ◢███◤ ◢███◤ ◢██◤  ◢██◤ ◢█████████◤       ◢██◤   
                                ◢█████████◤ ◢██◤  ◢██◤ ◢██◤  ████◤       ◢██◤    
                               ◢██◤◢█◤◢██◤ ◢██◤  ◢██◤ ◢██◤   ███◤       ◢██◤     
                              ◢██◤   ◢██◤ ◢████████◤ ◢█████████◤       ◢██◤      
                             ◢██◤   ◢██◤ ◢████████◤ ◢█████████◤      ◢███◤       

0007
[Chat API Request] Include server timestamp in all responses
4w5wt6
When working with the chat API, requesting chats for before: or after: require providing timestamps. However, there is no guarantee that whatever machine we are using to make requests has a date anywhere near the date the server uses, so it is difficult to provide valid dates without simply relying on both machines having functioning NTP (think chat API requests from a raspberry pi without a real time clock; it boots up and thinks it's 1970 for some time before it figures out the real date). If every chat API request -- even polls that come up empty -- included timestamp from the server, then we could use our initial account info call to figure out a reasonably-accurate "now" time on the server, and work off of that, and update that on every poll. My thought would basically be adding server_time:1234567.890 as a top-level field, alongside ok and the other call-specific data (my hope is that adding data won't break any existing callers) This timestamp could be the time our request was received, or the time it was processed. If it is a little off by the time it gets sent that is fine (we have to expect a network hop after it anyway, after all), what is important is that it is a *reasonably* current timestamp as measured on the server's clock, which we can then use as a reference point. The clock on our machine is not comparable to the clock on the server, but even a kinda-wrong date from the server is comparable to other dates on the server.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
More details: what I typically do is request after:the date on the last chat I have ever gotten from the chat API, minus a little fudge factor. However, with responses now time-gated, a user without many chats might wind up without having any chats inside the applicable time gate, which means they now need to provide a new date. They could step forward a few minutes and try again, but having a reliable way to get a current server time would make this a much simpler process.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
I didn't even think of this happening, thanks dtr
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -