Mysql
 sql >> Database >  >> RDS >> Mysql

FLUTTER&PHP - Non riesco a pubblicare sul database mysql dalla mia app flutter

Dare un'occhiata alla tua API mi fa pensare che stai cercando di pubblicare dati. Allo stesso tempo, posso vedere che stai utilizzando una richiesta get nella tua app Flutter.

Se stai cercando di pubblicare dati, fai una richiesta POST dalla tua app flutter piuttosto che una richiesta GET.

Ecco un esempio di richiesta POST in flutter utilizzando HTTP pacchetto.

Esempio di richiesta POST:

String url = "https://www.ekspar.com.tr/onarim/post.php";
var response = await http.post(url, body: {
    "adi":"YOUR_DATA",
    "soyadi":"YOUR_DATA"
});

var body = jsonDecode(response.body);

if(response.statusCode == 200){
    debugPrint("Data posted successfully");
}else{
    debugPrint("Something went wrong! Status Code is: ${response.statusCode}");
}