Blueprint.group

googles_ads = Blueprint(‘googles’, url_prefix=‘googles’)

  1. ads_group = Blueprint.group(googles_ads, url_prefix='ads’)
    request http://0.0.0.0:8080/v1/appstare/api/ads/googles/callback no problem

  2. ads_group = Blueprint.group(googles_ads)
    request http://0.0.0.0:8080/v1/appstare/api/googles/callback get 404

url_prefix must be assigned? Or is there something wrong with my address?
**


**’)

Nope, it is not a required argument. But adding it to the group will stack and add another segment not override.