docker 容器上 Parse-server 的自定义身份验证 (OAuth2)
Custom auth (OAuth2) for Parse-server on docker container
因此,正如标题所示,我正在寻找一种方法将我自己的自定义身份验证服务集成到解析服务器中,该服务器安装在 docker 容器内。这种身份验证基本上是 KeyCloak 的 OpenID 实现。
关键是我没有(对我的架构来说最好不要)在我的本地机器上使用 express 提供解析服务器。
到目前为止我一直在尝试的是搜索互联网,阅读问题,阅读 JavaScript 的解析服务器文档和指南以及其他内容以找出我如何实现它.
似乎不管我做什么,在每次测试结束时,我都会得到一个252 This authentication method is unsupported
错误! (即使我使用 facebook
、oauth
、oauth2
等也会发生这种情况)。
所以现在,docker-compose 服务看起来像这样:
parse-server:
image: parseplatform/parse-server
ports:
- "${SERVER_PORT}:1337"
restart: "always"
volumes:
- ./server/parse/custom-auth:/parse-server/custom-auth
depends_on:
- mongodb
links:
- mongodb:mongo
environment:
- PARSE_SERVER_APPLICATION_ID=${APP_ID}
- PARSE_SERVER_MASTER_KEY=${MASTER_KEY}
- PARSE_SERVER_DATABASE_URI=mongodb://mongo:${MONGO_PORT}/dev
- PARSE_SERVER_START_LIVE_QUERY_SERVER=1
- PARSE_SERVER_LIVE_QUERY={"classNames":${LIVE_QUERY_CLASSES}}
- PARSE_SERVER_MOUNT_GRAPHQL=${GQL_API}
- PARSE_SERVER_MOUNT_PLAYGROUND=${GQL_PLAYGROUND}
- PARSE_SERVER_AUTH_PROVIDERS={"swwwan-mail-auth":{"module":"/parse-server/custom-auth/swwwan-mail-auth/index.js"}}
和login/signup部分:
export const loginWithParse = async (account: IUserColumnTypes) => {
if (account.username === null || account.password === null) {
throw "validation failed";
}
// @ts-ignore
const loggedIn = await Parse.User.logInWith("swwwan.mail-auth", {
authData: {
id: "",
access_token: "",
},
});
console.log({ loggedIn });
//return await Parse.User.logIn(account.username, account.password);
};
login/signup的另一种选择:
export const loginWithParse = async (account: IUserColumnTypes) => {
if (account.username === null || account.password === null) {
throw "validation failed";
}
const u = new Parse.User();
u._linkWith("swwwan-mail-auth", {
authData: {
id: "tester",
access_token: "sample_access_token",
},
})
.then(res => console.log(res))
.catch(e => console.log(e));
//return await Parse.User.logIn(account.username, account.password);
};
更新: 通过使用第二种选择,我实际上得到了错误:
error: Parse error: Invalid key name: authData.swwwan-mail-auth.id {"code":105,"stack":"Error: Invalid key name: authData.swwwan-mail-auth.id
有没有办法让它发挥作用?可能我在这里遗漏了一些东西。
发送:)
请注意,link 函数中的 'dangle' 将在即将推出的 2.9 release Parse JS SDK
[=36] 中弃用=]
抱歉,文档还没有改进。将得到更多的工作
您的尝试是可行的!
您的最后一个错误提供了一个重要线索:您的适配器名称不能包含任何对 javascript 标识符无效的字符。在这种情况下,-
引起了问题,因为当我们将它保存在数据库中时,适配器名称用作键。
单元测试通常是最好的文档,您可能会发现它们对这种情况很有帮助。
参见:
因此,正如标题所示,我正在寻找一种方法将我自己的自定义身份验证服务集成到解析服务器中,该服务器安装在 docker 容器内。这种身份验证基本上是 KeyCloak 的 OpenID 实现。
关键是我没有(对我的架构来说最好不要)在我的本地机器上使用 express 提供解析服务器。
到目前为止我一直在尝试的是搜索互联网,阅读问题,阅读 JavaScript 的解析服务器文档和指南以及其他内容以找出我如何实现它.
似乎不管我做什么,在每次测试结束时,我都会得到一个252 This authentication method is unsupported
错误! (即使我使用 facebook
、oauth
、oauth2
等也会发生这种情况)。
所以现在,docker-compose 服务看起来像这样:
parse-server:
image: parseplatform/parse-server
ports:
- "${SERVER_PORT}:1337"
restart: "always"
volumes:
- ./server/parse/custom-auth:/parse-server/custom-auth
depends_on:
- mongodb
links:
- mongodb:mongo
environment:
- PARSE_SERVER_APPLICATION_ID=${APP_ID}
- PARSE_SERVER_MASTER_KEY=${MASTER_KEY}
- PARSE_SERVER_DATABASE_URI=mongodb://mongo:${MONGO_PORT}/dev
- PARSE_SERVER_START_LIVE_QUERY_SERVER=1
- PARSE_SERVER_LIVE_QUERY={"classNames":${LIVE_QUERY_CLASSES}}
- PARSE_SERVER_MOUNT_GRAPHQL=${GQL_API}
- PARSE_SERVER_MOUNT_PLAYGROUND=${GQL_PLAYGROUND}
- PARSE_SERVER_AUTH_PROVIDERS={"swwwan-mail-auth":{"module":"/parse-server/custom-auth/swwwan-mail-auth/index.js"}}
和login/signup部分:
export const loginWithParse = async (account: IUserColumnTypes) => {
if (account.username === null || account.password === null) {
throw "validation failed";
}
// @ts-ignore
const loggedIn = await Parse.User.logInWith("swwwan.mail-auth", {
authData: {
id: "",
access_token: "",
},
});
console.log({ loggedIn });
//return await Parse.User.logIn(account.username, account.password);
};
login/signup的另一种选择:
export const loginWithParse = async (account: IUserColumnTypes) => {
if (account.username === null || account.password === null) {
throw "validation failed";
}
const u = new Parse.User();
u._linkWith("swwwan-mail-auth", {
authData: {
id: "tester",
access_token: "sample_access_token",
},
})
.then(res => console.log(res))
.catch(e => console.log(e));
//return await Parse.User.logIn(account.username, account.password);
};
更新: 通过使用第二种选择,我实际上得到了错误:
error: Parse error: Invalid key name: authData.swwwan-mail-auth.id {"code":105,"stack":"Error: Invalid key name: authData.swwwan-mail-auth.id
有没有办法让它发挥作用?可能我在这里遗漏了一些东西。
发送:)
请注意,link 函数中的 'dangle' 将在即将推出的 2.9 release Parse JS SDK
[=36] 中弃用=]抱歉,文档还没有改进。将得到更多的工作
您的尝试是可行的!
您的最后一个错误提供了一个重要线索:您的适配器名称不能包含任何对 javascript 标识符无效的字符。在这种情况下,
-
引起了问题,因为当我们将它保存在数据库中时,适配器名称用作键。
单元测试通常是最好的文档,您可能会发现它们对这种情况很有帮助。
参见: