Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xbmlz/incubator-answer-plugin-connector-dingtalk
Dingtalk connector is a OAuth plug-in designed to support Dingtalk OAuth login.
https://github.com/xbmlz/incubator-answer-plugin-connector-dingtalk
Last synced: about 2 months ago
JSON representation
Dingtalk connector is a OAuth plug-in designed to support Dingtalk OAuth login.
- Host: GitHub
- URL: https://github.com/xbmlz/incubator-answer-plugin-connector-dingtalk
- Owner: xbmlz
- Created: 2024-02-29T11:10:55.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-03-01T04:17:07.000Z (10 months ago)
- Last Synced: 2024-06-21T14:25:28.809Z (6 months ago)
- Language: Go
- Homepage:
- Size: 20.5 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Dingtalk connector
> Dingtalk connector is a OAuth plug-in designed to support Dingtalk OAuth login.## How to use
### Build
```bash
./answer build --with github.com/xbmlz/incubator-answer-plugin-connector-dingtalk
```### Configuration
- `ClientID` - Dingtalk OAuth client ID
- `ClientSecret` - Dingtalk OAuth client secretAuthorization callback URL as https://example.com/answer/api/v1/connector/redirect/dingtalk
Dingtalk OAuth API documentation: https://open.dingtalk.com/document/orgapp-server/use-dingtalk-account-to-log-on-to-third-party-websites-1
### Build docker image with plugin from answer base image
```Dockerfile
FROM apache/answer as answer-builderRUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.ustc.edu.cn/g' /etc/apk/repositories
RUN apk --no-cache add \
build-base git bash nodejs npm go && \
npm install -g pnpmRUN go env -w GOPROXY=https://goproxy.cn,direct
RUN answer build \
--with github.com/xbmlz/incubator-answer-plugin-connector-dingtalk \
--output /usr/bin/new_answerFROM alpine
LABEL maintainer="[email protected]"ARG TIMEZONE
ENV TIMEZONE=${TIMEZONE:-"Asia/Shanghai"}RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.ustc.edu.cn/g' /etc/apk/repositories
RUN apk update \
&& apk --no-cache add \
bash \
ca-certificates \
curl \
dumb-init \
gettext \
openssh \
sqlite \
gnupg \
tzdata \
&& ln -sf /usr/share/zoneinfo/${TIMEZONE} /etc/localtime \
&& echo "${TIMEZONE}" > /etc/timezoneCOPY --from=answer-builder /usr/bin/new_answer /usr/bin/answer
COPY --from=answer-builder /data /data
COPY --from=answer-builder /entrypoint.sh /entrypoint.sh
RUN chmod 755 /entrypoint.shVOLUME /data
EXPOSE 80
ENTRYPOINT ["/entrypoint.sh"]
```You can update the --with parameter to add more plugins that you need.
```bash
docker build -t answer-with-plugin .
docker run -d -p 9080:80 -v answer-data:/data --name answer answer-with-plugin
```