Wie kann ich mit Flattern auf WooCommerce -API zugreifen?

Post a reply

Smilies
:) :( :oops: :chelo: :roll: :wink: :muza: :sorry: :angel: :read: *x) :clever:
View more smilies

BBCode is ON
[img] is ON
[flash] is OFF
[url] is ON
Smilies are ON

Topic review
   

Expand view Topic review: Wie kann ich mit Flattern auf WooCommerce -API zugreifen?

by Anonymous » 11 Apr 2025, 10:06

WooCommerce -API implementiert OAuth1 mit Verbraucherschlüssel /Geheimnis.

Code: Select all

Future getData() async {

var response = await http.get(
Uri.encodeFull( "http://jalania.com/wp-json/wp/v2/posts" ),
headers: {"Accept": "application/json"});
this.setState(() {
data = JSON.decode(response.body);
});
}
Ich habe die API-URL in WooCommerce-API, http://jalania.com/wp-json/wc/v2/products , geändert. < /p>

Weiß jemand, wie man mit Flattern auf WooCommerce -API zugreift? < /P.>

Top