File tree 4 files changed +14
-15
lines changed
4 files changed +14
-15
lines changed Original file line number Diff line number Diff line change @@ -44,6 +44,8 @@ To use Yubico OTP you need YubiCloud access. You can get free API credentials fr
44
44
#### Validating a Yubico one time password
45
45
46
46
``` {php}
47
+ use CommonException\NetworkException\Base\NetworkException;
48
+
47
49
$otp = $_POST['otp'];
48
50
$userPublicId = 'fetchedFromDatabaseOrSimilar';
49
51
55
57
} else {
56
58
// Validation failed
57
59
}
58
- } catch (OathServerSuite\Exception\ NetworkException $exception) {
60
+ } catch (NetworkException $exception) {
59
61
// Accessing the YubiCloud webservice failed.
60
62
}
61
63
```
@@ -278,6 +280,15 @@ if ($validator->isValid()) {
278
280
}
279
281
```
280
282
283
+ ---
284
+
285
+ ## Exception handling
286
+
287
+ PHP Oath Server Suite provides different exceptions – some provided by the PHP Common Exceptions project – for proper handling.
288
+ You can find more information about [ PHP Common Exceptions at Github] ( https://github.com/markenwerk/php-common-exceptions ) .
289
+
290
+ ---
291
+
281
292
## Contribution
282
293
283
294
Contributing to our projects is always very appreciated.
Original file line number Diff line number Diff line change 28
28
"require" : {
29
29
"php" : " >=5.3" ,
30
30
"lib-curl" : " *" ,
31
+ "markenwerk/common-exceptions" : " ~2.0" ,
31
32
"markenwerk/qr-code-suite" : " ~3.0" ,
32
33
"enygma/yubikey" : " ~3.0" ,
33
34
"skleeschulte/base32" : " *"
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 2
2
3
3
namespace OathServerSuite \Validation \YubicoOtp ;
4
4
5
- use OathServerSuite \ Exception \NetworkException ;
5
+ use CommonException \ NetworkException \ Base \NetworkException ;
6
6
use OathServerSuite \Exception \ParserException ;
7
7
use Yubikey \Validate ;
8
8
You can’t perform that action at this time.
0 commit comments