I receive some data from my sensor :
This is the payload that I’m expected, but when I’m checking in “Event” at data it shows me this :
Which for me is an issue because when I put some java to decode the payload I get something like this :
My goal is to send those data to InfluxDB, so first I need to decode this payload , but I can’t If I’m not able to retrieve the data into a variable.
Sounds like you’re decoding it wrong. The data field in the uplink is shown in Base64 encoding, you’ll want to do a base64 to hex conversion.
If you paste your data into here: https://cryptii.com/pipes/base64-to-hex you get your expected bytes in hex.