I changed the registration to add the uma_protection to the scope, and modified AppAuth to include that scope:
```
OIDAuthState: 0x600003f2e760, isAuthorized: YES, refreshToken: "(null)", scope: "openid profile uma_protection", accessToken: "a1db4edb-b49e-4b58-aad5-e75102120fbf", accessTokenExpirationDate: 2018-11-27 19:58:11 +0000, idToken: "eyJraW...[redacted]", lastAuthorizationResponse: <OIDAuthorizationResponse: 0x60000383a710, authorizationCode: b59061e8-4bfd-4c23-b470-4b0d0313ba7e, state: "bKQuTBypeq2Timzo4SAWLwkIVHwezgSMxg4c9oOPqqk", accessToken: "(null)", accessTokenExpirationDate: (null), tokenType: (null), idToken: "(null)", scope: "openid profile uma_protection", additionalParameters: {
"session_id" = "362d2453-5e43-4141-85f4-08f4b618c986";
"session_state" = "837c40dc-1ef6-40cf-9942-03051dfac602"
```
I modified my apache configuration for mod_auth_opoenidc:
```
OIDCOAuthIntrospectionEndpointMethod POST
OIDCOAuthAcceptTokenAs header post
OIDCOAuthIntrospectionEndpointParams token_type_hint=access_token
```
Looking at the apache2/error.log:
```
oidc_util_http_form_encoded_data: data=token_type_hint=access_token&token=a1db4edb-b49e-4b58-aad5-e75102120fbf
```
I'm not sure what I'm doing wrong, but I've read the fine manuals for mod_auth_openidc and gluu, and can't get any further.