Skip to content

Commit 6e6dea0

Browse files
authored
Merge pull request #73 from mezzio/hotfix/35-absolute-uri
Document that redirect_uri is absolute
2 parents 1199de7 + b308c0a commit 6e6dea0

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,19 @@
33
[![Build Status](https://github.com/mezzio/mezzio-authentication-oauth2/workflows/Continuous%20Integration/badge.svg)](https://github.com/mezzio/mezzio-authentication-oauth2/actions?query=workflow%3A"Continuous+Integration")
44

55
> ## 🇷🇺 Русским гражданам
6-
>
6+
>
77
> Мы, участники Laminas, родились и живем в разных странах. У многих из нас есть друзья, родственники и коллеги как в России, так и в Украине. Некоторые из нас родились в России. Некоторые из нас живут в России. У некоторых бабушки и дедушки сражались с фашистами во Второй мировой войне. Здесь никто не поддерживает фашизм.
8-
>
8+
>
99
> У одного из нас есть украинская родственница, которая спаслась из дома вместе с сыном. Поезд задержался из-за бомбежки на дороге впереди. У нас есть друзья, которые прячутся в бомбоубежищах. Мы с тревогой ждем весточки от них после воздушных налетов, которые беспорядочно наносят удары и попадают по больницам, школам, детским садам и домам. Мы не берем это из каких-либо СМИ. Мы наблюдаем это напрямую.
10-
>
10+
>
1111
> Вы доверяете нам достаточно, чтоб использовать наши программы, и мы просим вас довериться нам вновь. Мы нуждаемся в помощи. Выходите и протестуйте против этой бесполезной войны. Остановите кровопролитие. Скажите "Нет войне!"
12-
>
12+
>
1313
> ## 🇺🇸 To Citizens of Russia
14-
>
14+
>
1515
> We at Laminas come from all over the world. Many of us have friends, family and colleagues in both Russia and Ukraine. Some of us were born in Russia. Some of us currently live in Russia. Some have grandparents who fought Nazis in World War II. Nobody here supports fascism.
16-
>
16+
>
1717
> One team member has a Ukrainian relative who fled her home with her son. The train was delayed due to bombing on the road ahead. We have friends who are hiding in bomb shelters. We anxiously follow up on them after the air raids, which indiscriminately fire at hospitals, schools, kindergartens and houses. We're not taking this from any media. These are our actual experiences.
18-
>
18+
>
1919
> You trust us enough to use our software. We ask that you trust us to say the truth on this. We need your help. Go out and protest this unnecessary war. Stop the bloodshed. Say "stop the war!"
2020
2121
Laminas-mezzio-authentication-oauth2 is middleware for [Mezzio](https://github.com/mezzio/mezzio)
@@ -47,6 +47,6 @@ Browse the documentation online at https://docs.mezzio.dev/mezzio-authentication
4747

4848
## Support
4949

50-
* [Issues](https://github.com/mezzio/mezzio-authentication-oauth2/issues/)
51-
* [Chat](https://laminas.dev/chat/)
52-
* [Forum](https://discourse.laminas.dev/)
50+
- [Issues](https://github.com/mezzio/mezzio-authentication-oauth2/issues/)
51+
- [Chat](https://laminas.dev/chat/)
52+
- [Forum](https://discourse.laminas.dev/)

docs/book/v1/grant/auth_code.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ authorization server:
2424

2525
- `response_type` = code.
2626
- `client_id` with the client identifer.
27-
- `redirect_uri` with the URI to which to redirect the client following
27+
- `redirect_uri` with the absolute URI to which to redirect the client following
2828
successful authorization. This parameter is optional, but if it is not sent,
2929
the user will be redirected to a default location on completion.
3030
- `scope` with a space-delimited list of requested scope permissions.

docs/book/v1/grant/implicit.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ authorization server:
1111

1212
- `response_type` = token.
1313
- `client_id`, with the client’s ID.
14-
- `redirect_uri`, with the URI to which to redirect the client after completing
15-
authorization. This parameter is optional; if not provided, however, the user
16-
will be redirected to a default location.
14+
- `redirect_uri`, with the absolute URI to which to redirect the client after
15+
completing authorization. This parameter is optional; if not provided,
16+
however, the user will be redirected to a default location.
1717
- `scope`, with a space-delimited list of requested scope permissions.
1818
- `state`, with a Cross-Site Request Forgery (CSRF) token. This parameter is
1919
optional but highly recommended. You can store the value of CSRF token in the

0 commit comments

Comments
 (0)