You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The API was previously working fine for me, and I've triple-checked the API key, even creating a new account with another email address, and the problem still persists. I also created a new additional key for both accounts, just in case it was related to the specific key, and I still have the same problem.
To Reproduce
Here is my code for generation options and the API instance. (URL is passed as a string slice).
let url = <some string slice>
let app = FirecrawlApp::new(api_key)?;let options = CrawlOptions{scrape_options:CrawlScrapeOptions{formats:vec![CrawlScrapeFormats::Markdown].into(),
..Default::default()}.into(),limit:5.into(),
..Default::default()};
app.crawl_url(url,self.options.clone()).await?;}
Expected Behavior
Returns a 200 response.
Environment:
MacOS latest
firecrawl = "^1.0"
tokio = { version = "1.39.3", features = ["full"] }
The text was updated successfully, but these errors were encountered:
Describe the Bug
I'm trying to use the API to call
FirecrawlApp::crawl_url
via the Rust SDK, and I am getting an invalid token error:The API was previously working fine for me, and I've triple-checked the API key, even creating a new account with another email address, and the problem still persists. I also created a new additional key for both accounts, just in case it was related to the specific key, and I still have the same problem.
To Reproduce
Here is my code for generation options and the API instance. (URL is passed as a string slice).
Expected Behavior
Returns a 200 response.
Environment:
MacOS latest
firecrawl = "^1.0"
tokio = { version = "1.39.3", features = ["full"] }
The text was updated successfully, but these errors were encountered: