Binance.us API Delphi and .NET

From sgcWebSockets 2022.1, the Binance.us Servers are supported by our Binance API Client. The following APIs are supported: WebSocket streams: allows to subscribe to some methods and get data in real-time. Events are pushed to clients by server to subscribers. Uses WebSocket as protocol.UserData stream: subscribed clients get account details. Requ...

Continue reading

Bitmex Delphi Client Updated

From sgcWebSockets 2022.1, the Bitmex REST API is supported, this means that now you can place orders, cancel existing orders, get executions, position... and much more. Place Orders  The Bitmex REST API offer public and private endpoints. The Private endpoints requires that messages signed to increase the security of transactions. First you m...

Continue reading

AMQP Receive Messages (3 / 3)

AMQP allows to receive the messages in 2 modes: Request by Client: using the GetMessage method. If there aren't messages in the queue, the event OnAMQPBasicGetEmpty will be called.Pushed by Server: using the Consume method. Consume  Consumers consume from queues. In order to consume messages there has to be a queue. When a new consumer is adde...

Continue reading

AMQP Publish Messages (2 / 3)

The method PublishMessages is used to send a message to the AMQP server. AMQP Servers automatically bind the queues to "direct" exchange using the queue name as routing key. This allows to send a message to a specific queue without the need to declare a binding (just calling PublishMessage method and pasing the Exchange argument as empty value and ...

Continue reading

AMQP Exchanges and Queues (1 / 3)

From sgcWebSockets 2022.1 AMQP 0.9.1 protocol is supported. The Advanced Message Queuing Protocol (AMQP) is an open standard application layer protocol for message-oriented middleware. The defining features of AMQP are message orientation, queuing, routing (including point-to-point and publish-and-subscribe), reliability and security...

Continue reading

Telegram TDLib error: UPDATE_APP_TO_LOGIN

If you get the error code 406 "UPDATE_APP_TO_LOGIN", means that the TDLib version is outdated and must be updated to latest 1.7.9 version, the reason is that Telegram has migrate to 64-Bit identifiers and previous versions are not compatible, so it's not possible login with a phone (login with an existing account and QR code is still possible ...

Continue reading

Telegram Request Phone Number or Location

From sgcWebSockets 2022.1 the Telegram Client component is able to request the user the Phone Number or the location when has login as a bot. Find below an example code in Delphi, CBuilder and .NET Delphi Example  oReplyMarkup := TsgcTelegramReplyMarkupShowKeyboard.Create;Try oReplyMarkup.AddButtonTypeRequestPhoneNumber('Give me your phone'); ...

Continue reading

Pusher Custom Authentication

From sgcWebSockets 2022.1, the sgcWebSockets Pusher client allows to implement your own custom authentication. Pusher only allow subscribe to private or presence channels, if the connection provides an authentication token, this allows to restrict the access. You can build your own Authentication flow, using OnPusherAuthentication event, this event...

Continue reading

sgcWebSockets 4.5.4

Rad Studio  Here is the comprehensive list of new features and bug fixes included in sgcWebSockets 4.5.4: [+] : Improved TLSOptions.Version property, now if the value is tlsUndefined (the default), the client will try to negotiate all possible TLS versions (from TLS 1.3 to TLS 1.0), before this change the TLS 1.0 was selected. [+] : Improved A...

Continue reading

Twilio Delphi Send a SMS Message

Find below a simple example of how to send a Twilio SMS message using sgcWebSockets library. Twilio Code  Just pass to the method the parameters: Phone from the message is sent, Phone where the message should be delivered, and the text Message. Set your own Twilio Account Sid and Twilio Auth Token. uses sgcHTTP;procedure SendTwilioSMS(const aF...

Continue reading