- Ignacio Gramajo
- Ryan Trinh
- Alexander Ventura
- Andrew Liddle
The foodora app allows users to find, save, and edit recipes, as well as publish recipes under their own user account.
- Built with Android Studio, Gradle, Room Persistence Library, SQLite
We will be using the Spoonacular API. to search for Recipes The Spoonacular API is accessed by sending HTTPS requests on specific URLs. The Spoonacular Recipe Search API allows us to search through millions of web recipes and integrate this information into our app.
Developers wishing to use this as a base for their own work will need to add an ApiKey class with their own key from Spoonacular, as shown below:
package com.daclink.drew.sp22.cst438_project01_starter.Api;
public class ApiKey {
private String key;
public ApiKey(){
key = "YOUR_KEY_HERE";
}
public String getKey() {
return key;
}
}
- API Link.
- User Opens App
- Create a user
- Login with user
- Go to My Recipes
- Tap on Add Recipes --> Swipe top down to refresh
- Square button to minimize app
- Re-open app, select My Recipes --> See that recipes are still there
- Tap on My Account
- Update Password
- Logout of Account
- Login with new Password