You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
as mentioned in the Matrix specification - Client Server API, data parameter in SetPusher struct should be a dictionary of pusher specific parameters:
Required if kind is not null. A dictionary of information for the pusher implementation itself. If kind is http, this should contain url which is the URL to use to send notifications to.
working on push notification implementation for iOS devices, I found that there are a series of additional parameters we need to set in the PushData struct.
No, that sounds reasonable. We generally try to avoid the nlohmann::json type in our API, as it is untyped and increases compile time a lot, but if we need to be that flexible, then there isn't really a way around it :)
as mentioned in the Matrix specification - Client Server API,
data
parameter inSetPusher
struct should be a dictionary of pusher specific parameters:working on push notification implementation for iOS devices, I found that there are a series of additional parameters we need to set in the
PushData
struct.so I'm proposing tho change the
data
field inSetPusher
struct to support additional parameters (Maybe thenlohmann::json
).The text was updated successfully, but these errors were encountered: