Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Simon .
8,947 PointsFlask REST API / resourceful blueprints / register api (Task 3)
I'm not sure what's wrong with my code. The challenge returns the following error:
Didn't get a 200 at /api/v1/recipes/1
/ingredients/1 seems to work (it threw an error earlier which I fixed).
from flask import Flask
from resources.ingredients import ingredients_api
from resources.recipes import recipes_api
app = Flask(__name__)
app.register_blueprint(ingredients_api)
app.register_blueprint(recipes_api)
if __name__ == '__main__':
app.run()
from flask import Blueprint
from flask.ext.restful import Resource, Api
import models
class IngredientList(Resource):
def get(self):
return 'IngredientList'
class Ingredient(Resource):
def get(self, id):
return 'Ingredient'
ingredients_api = Blueprint("resources.ingredients", __name__)
api = Api(ingredients_api)
api.add_resource(
IngredientList,
"/api/v1/ingredients",
endpoint="ingredients"
)
api.add_resource(
Ingredient,
"/api/v1/ingredients/<int:id>",
endpoint="ingredient"
)
from flask import Blueprint
from flask.ext.restful import Resource, Api
import models
class RecipeList(Resource):
def get(self):
return 'RecipeList'
class Recipe(Resource):
def get(self, id):
return 'Recipe'
recipes_api = Blueprint("resources.recipes", __name__)
api = Api(recipes_api, __name__)
api.add_resource(
RecipeList,
"/api/v1/recipes",
endpoint="recipes"
)
api.add_resource(
Recipe,
"/api/v1/recipes/<int:id>",
endpoint="recipe"
)

Simon .
8,947 PointsHow did I miss that.. I even remember doing some copy & paste around those lines.
Thanks a lot!
Mind putting your response as a separate comment so I can mark it as solved?

jman1023
8,059 Pointsdone :) Didn't realize I replied as a comment
1 Answer

jman1023
8,059 PointsIt seems like you're getting the error because of line 19 in recipes.py.
The line should just read: api = Api(recipes_api)
jman1023
8,059 Pointsjman1023
8,059 PointsIt seems like you're getting the error because of line 19 in recipes.py.
The line should just read: api = Api(recipes_api)