This crate helps when trying to use reqwest with bevy, without having to deal with async stuff, and it works on both web and and native ( only tested on x86_64 and wasm for now)
``` rust use bevy::prelude::; use bevy_mod_reqwest::;
fn main() { App::new() .addplugins(MinimalPlugins) .addplugin(ReqwestPlugin) .addsystem(sendrequests) .addsystem(handleresponses) .insertresource(ReqTimer(Timer::new( std::time::Duration::fromsecs(1), TimerMode::Repeating, ))) .run(); }
struct ReqTimer(pub Timer);
fn send_requests(mut commands: Commands, time: Res
if timer.0.just_finished() {
if let Ok(url) = "https://www.boredapi.com/api/activity".try_into() {
let req = reqwest::Request::new(reqwest::Method::GET, url);
let req = ReqwestRequest(Some(req));
commands.spawn(req);
}
}
}
fn handleresponses(mut commands: Commands, results: Query<(Entity, &ReqwestBytesResult)>) { for (e, res) in results.iter() { let string = res.asstr().unwrap(); bevy::log::info!("{string}");
// Done with this entity
commands.entity(e).despawn_recursive();
}
} ```