Skip to content

Commit 5dffb87

Browse files
committed
Changes to README
1 parent ecacb92 commit 5dffb87

File tree

7 files changed

+315
-472
lines changed

7 files changed

+315
-472
lines changed

CredentialsHowTo.md

Lines changed: 10 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,25 @@
11
# How to Set Up Credentials
2-
1. Go to the *ATH Móvil* [configuration page](https://www.athmovil.com/web/config.htm
3-
) and click on 'Change Security Questions'. This will bring you to [this page](https://www.athmovil.com/web/editquestions.htm
4-
).
2+
3+
1. Go to the ATH Móvil [configuration page](https://www.athmovil.com/web/config.htm) and click on 'Change Security Questions'. This will bring you to [this page](https://www.athmovil.com/web/editquestions.htm).
54

65
2. On the 'Change Security Questions' page select the questions that you want and answer them.
76

87
3. Use the list below to determine the IDs of your selected questions.
98

10-
5. Use these IDs to set up your credentials object like this:
9+
4. Use these IDs to set up your credentials object like this:
1110

1211
```js
1312
const credentials = {
14-
username: '[email protected]',
15-
password: 'myPassword123',
16-
answers: { 'Q1.8': 'Albert', 'Q1.7': 'Saphire', 'Q1.10': 'San Juan' }
17-
}
13+
username: '[email protected]',
14+
password: 'myPassword123',
15+
answers: { 'Q1.8': 'Albert', 'Q1.7': 'Saphire', 'Q1.10': 'San Juan' }
16+
};
1817
```
1918

2019
6. Click continue.
2120

2221
7. Now you can use that object to instantiate an Athm class. You are done.
2322

24-
2523
# Questions and their IDs
2624

2725
Q1.1: ¿En qué ciudad estaba tu escuela superior?
@@ -42,7 +40,7 @@ Q1.8: ¿Cuál es el nombre de tu abuelo materno?
4240

4341
Q1.9: ¿Cuál es el nombre de tu mejor amigo(a)?
4442

45-
Q1.10: ¿En qué ciudad te casaste? (Nombre completo de la ciudad solamente)
43+
Q1.10: ¿En qué ciudad te casaste? (Nombre completo de la ciudad solamente)
4644

4745
Q2.1: ¿Cuál es el nombre de tu padrino de bodas?
4846

@@ -74,7 +72,7 @@ Q3.4: ¿En qué ciudad conociste a tu esposa(o)? (Nombre completo de la ciudad s
7472

7573
Q3.5: ¿Cuál era tu restaurante preferido en la universidad?
7674

77-
Q3.6: ¿Cuál es el nombre de tu abuelo paterno?
75+
Q3.6: ¿Cuál es el nombre de tu abuelo paterno?
7876

7977
Q3.7: ¿Cuál era la marca de tu primer carro?
8078

@@ -84,8 +82,6 @@ Q3.9: ¿Cuál es el nombre de la ciudad o pueblo donde vivía tu abuela? (Nombre
8482

8583
Q3.10: ¿En qué ciudad vivía tu mejor amigo(a) de escuela superior? (Nombre completo de la ciudad solamente)
8684

87-
8885
## Important Note
89-
Remember to store your credentials in a safe place. Also, if the given credentials are wrong your account could be temporarily blocked and require you to reset the password using an SMS verification code.
9086

91-
A good way of maintaining your credentials safe is to save them in a separate file, exclude that file using `.gitignore` and then import this file from the files that actually need the credentials. See the examples directory for more information on how to do this.
87+
Remember to store your credentials in a safe place. Also, if the given credentials are wrong your account could be temporarily blocked and require you to reset the password using an SMS verification code.

0 commit comments

Comments
 (0)