Instrumental | a20accc | 2018-03-26 13:49:56 -0700 | [diff] [blame] | 1 | ############################################################ |
| 2 | # Properties for OAuth Example |
| 3 | # Jonathan Gathman |
| 4 | # on 2018-01-30 |
| 5 | # These properties are the BARE essentials for OAuth calling |
| 6 | ############################################################ |
| 7 | # aaf_locate is the replacement whenever a URL is set to "AAF_LOCATE_URL" |
| 8 | # at this time, only AAF has this ability. |
| 9 | # |
| 10 | # This is, effectively, the Environment you will use for AAF Location |
| 11 | # TEST ENV |
| 12 | aaf_locate_url=https://aaftest.test.att.com |
| 13 | |
| 14 | # IST ENV |
| 15 | # aaf_locate_url=https://aafist.test.att.com |
| 16 | |
| 17 | # PROD ENV |
| 18 | # aaf_locate_url=https://aaf.it.att.com |
| 19 | |
| 20 | cadi_latitude=<YOUR Latitude (try bing.com/maps) |
| 21 | cadi_longitude=<YOUR Longitude> |
| 22 | |
| 23 | aaf_url=https://AAF_LOCATE_URL/locate/com.att.aaf.service:2.0 |
| 24 | cadi_keyfile=<YOUR Keyfile. Create with java -jar cadi-core<Version>.jar keygen keyfile. chmod 400 keyfile> |
| 25 | |
| 26 | aaf_id=<YOUR Fully Qualified AAF MechID> |
| 27 | aaf_password=enc:<YOUR encrypted passwrod. Create with java -jar cadi-core<Version>.jar digest keyfile> |
| 28 | # aaf_alias=<YOUR AAF Certman Generated alias FOR the right AAF Env> |
| 29 | |
| 30 | # aaf_conn_timeout=6000 |
| 31 | # aaf_timeout=10000 |
| 32 | |
| 33 | # A Sample AAF OAuth Enabled Service |
| 34 | #aaf_oauth2_hello_url=https://AAF_LOCATE_URL/locate/com.att.aaf.hello:2.0/hello |
| 35 | aaf_oauth2_hello_url=http://135.46.170.156:32245/restservices/echo/v1/testCXF/testGet |
| 36 | |
| 37 | # OAuth2 |
| 38 | # AAF OAuth2 Service. |
| 39 | aaf_oauth2_token_url=https://AAF_LOCATE_URL/locate/com.att.aaf.token:2.0/token |
| 40 | aaf_oauth2_introspect_url=https://AAF_LOCATE_URL/locate/com.att.aaf.introspect:2.0/introspect |
| 41 | |
| 42 | #ISAM |
| 43 | aaf_alt_oauth2_domain=isam.att.com |
| 44 | #aaf_alt_oauth2_client_id=<get from ISAM> |
Instrumental | 88aec4e | 2018-05-18 07:26:59 -0500 | [diff] [blame] | 45 | #aaf_alt_oauth2_domain=people.osaaf.org |
Instrumental | a20accc | 2018-03-26 13:49:56 -0700 | [diff] [blame] | 46 | |
| 47 | #ISAM TEST |
Instrumental | 17ca744 | 2018-03-29 16:54:19 -0500 | [diff] [blame] | 48 | aaf_alt_oauth2_token_url=https://oauth.stage.elogin.att.com/mga/sps/oauth/oauth20/token |
| 49 | aaf_alt_oauth2_introspect_url=https://oauthapp.stage.att.com/mga/sps/oauth/oauth20/introspect |
| 50 | aaf_alt_oauth2_client_secret=enc:<encrypt with cadi tool> |
Instrumental | a20accc | 2018-03-26 13:49:56 -0700 | [diff] [blame] | 51 | |
| 52 | #ISAM PROD |
| 53 | #aaf_alt_oauth2_token_url=https://oauth.idp.elogin.att.com/mga/sps/oauth/oauth20/token |
| 54 | #aaf_alt_oauth2_introspect_url=https://oa-app.e-access.att.com/mga/sps/oauth/oauth20/introspect |
| 55 | #aaf_alt_oauth2_client_secret=enc:<encrypt with cadi tool> |
| 56 | |
| 57 | |