|
@@ -662,12 +662,12 @@ class WeRoBot(BaseRoBot):
|
|
|
app_id = app.config.get("WXMP_APP_ID")
|
|
|
app_secret = app.config.get("WXMP_APP_SECRET")
|
|
|
encoding_aes_key = app.config.get("WXMP_APP_AESKEY")
|
|
|
- access_token_redis_url = app.config.get("ACCESS_TOKEN_REDIS_URL")
|
|
|
+ WXMP_REDIS_URL = app.config.get("WXMP_REDIS_URL")
|
|
|
self.config.update(
|
|
|
TOKEN=token,
|
|
|
APP_ID=app_id,
|
|
|
APP_SECRET=app_secret,
|
|
|
- ACCESS_TOKEN_REDIS_URL=access_token_redis_url,
|
|
|
+ WXMP_REDIS_URL=WXMP_REDIS_URL,
|
|
|
ENCODING_AES_KEY=encoding_aes_key)
|
|
|
|
|
|
|