Some disconnection errors are due to reuse the same clientID.про это уже прочитал пробовал не получается
If a client connects with the same clientID, the previous client is disconnected with error 7 or 8.
Try to use a unique clientID or randomize it.
AMQJS0007E Socket error:undefined.вот эту ошибку выводит.
useEffect(()=>{
client.connect({
onSuccess: ()=>{
console.log("Connected!");
client.subscribe("OCPP-A1:B4:C5:C1:DD:3E/conn1/V1")
client.onMessageArrived = onMessage;
},
onFailure: (responseObject)=>{
console.log("Failed to connect!");
if (responseObject.errorCode !== 0) {
console.log(responseObject.errorMessage);
}
},
userName: "nzs",
password: "123nzs",
useSSL: true,
});
},[])
Retrofit retrofit = new Retrofit.Builder().baseUrl("https://fleet-api.taxi.yandex.net/v1/parks/driver-profiles/list").addConverterFactory(GsonConverterFactory.create()).build();
этого никуда не продвинулся. Дальше как передать параметры не понимаю