Skip to content

Commit

Permalink
Merge pull request #164 from bryant1410/master
Browse files Browse the repository at this point in the history
Fix broken headings in Markdown files
  • Loading branch information
nawazdhandala authored Apr 17, 2017
2 parents 9abd30a + 37264c3 commit 7620f37
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion MEMBERS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Current Project Team Members
# Current Project Team Members

The CloudBoost project team comprises a group of core collaborators and a sub-group that forms the Technical Steering Committee (TSC) which governs the project. For more information about the governance of the CloudBoost project, see GOVERNANCE.md.

Expand Down
26 changes: 13 additions & 13 deletions docs/app-settings/auth.md
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,8 @@ Example:
}
}
```
##Facebook Social Authentication
###Attributes
## Facebook Social Authentication
### Attributes
```
{
id:true,
Expand Down Expand Up @@ -389,12 +389,12 @@ Example:
}
```

##Google Social Authentication
## Google Social Authentication
You need to paste your CloudBoost callback URL in "Authorized redirect URIs" field in the Authentication section of the Google API console.
</br>
"&lt;your-server-url&gt;/auth/&lt;your-appId&gt;/google/callback

###Attributes
### Attributes
```
{
'userinfoProfile':{
Expand All @@ -408,7 +408,7 @@ You need to paste your CloudBoost callback URL in "Authorized redirect URIs" fie
}
```

###Permissions
### Permissions
```
{
'contacts':{
Expand Down Expand Up @@ -474,18 +474,18 @@ You need to paste your CloudBoost callback URL in "Authorized redirect URIs" fie
}
```

##Twitter Social Authentication
## Twitter Social Authentication
You need to paste your CloudBoost callback URL in "Callback URL" field in the Twitter App Settings.
</br>
"&lt;your-server-url&gt;/auth/&lt;your-appId&gt;/twitter/callback


##LinkedIn Social Authentication
## LinkedIn Social Authentication
You need to paste your CloudBoost callback URL in "Authorized Redirect URLs" field in the Linkedin Developers App Sections..
</br>
"&lt;your-server-url&gt;/auth/&lt;your-appId&gt;/linkedin/callback

###Permissions
### Permissions
```
{
r_basicprofile:true,
Expand All @@ -495,12 +495,12 @@ You need to paste your CloudBoost callback URL in "Authorized Redirect URLs" fie
}
```

##Github Social Authentication
## Github Social Authentication
You need to paste your CloudBoost callback URL in "Authorization callback URL" field in Github Developers App Section.
</br>
"&lt;your-server-url&gt;/auth/&lt;your-appId&gt;/github/callback

###Attributes
### Attributes
```
{
user:{
Expand All @@ -514,7 +514,7 @@ You need to paste your CloudBoost callback URL in "Authorization callback URL" f
}
```

###Permissions
### Permissions
```
{
userFollow:{
Expand Down Expand Up @@ -743,7 +743,7 @@ xhttp.open("PUT",<your-server-url>/settings/<your-appId>/email, true);
xhttp.send(data);
```

##Retrieve App Settings
## Retrieve App Settings
Make a POST REST request to ClouBoost API to retrive your app settings
</br>
Request:&lt;your-server-url&gt;/settings/&lt;your-appId&gt;
Expand All @@ -767,5 +767,5 @@ xhttp.open("POST", <your-server-url>/settings/<your-appId>, true);
xhttp.send(data);
```

#Contribute
# Contribute
If you want to contribute to this repo. Please make sure you spell check everything and make sure you have tested the code with the live CloudBoost API before sending us the pull request.
4 changes: 2 additions & 2 deletions docs/app-settings/email.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ xhttp.open("PUT",<your-server-url>/settings/<your-appId>/email, true);
xhttp.send(data);
```

##Retrieve App Settings
## Retrieve App Settings
Make a POST REST request to ClouBoost API to retrive your app settings
</br>
Request:&lt;your-server-url&gt;/settings/&lt;your-appId&gt;
Expand All @@ -97,5 +97,5 @@ xhttp.open("POST", <your-server-url>/settings/<your-appId>, true);
xhttp.send(data);
```

#Contribute
# Contribute
If you want to contribute to this repo. Please make sure you spell check everything and make sure you have tested the code with the live CloudBoost API before sending us the pull request.
4 changes: 2 additions & 2 deletions docs/app-settings/general.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ xhttp.open("PUT",<your-server-url>/settings/<your-appId>/general, true);
xhttp.send(data);
```

##Retrieve App Settings
## Retrieve App Settings
Make a POST REST request to ClouBoost API to retrive your app settings
</br>
Request:&lt;your-server-url&gt;/settings/&lt;your-appId&gt;
Expand All @@ -71,5 +71,5 @@ xhttp.open("POST", <your-server-url>/settings/<your-appId>, true);
xhttp.send(data);
```

#Contribute
# Contribute
If you want to contribute to this repo. Please make sure you spell check everything and make sure you have tested the code with the live CloudBoost API before sending us the pull request.
6 changes: 3 additions & 3 deletions docs/app-settings/push.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ if(xhttp.readyState == 4 && xhttp.status == 200) {
xhttp.open("PUT",<your-server-url>/settings/<your-appId>/push, true);
xhttp.send(data);
```
##Upload Apple certificate to CloudBoost
## Upload Apple certificate to CloudBoost
Make PUT REST request to your CloudBoost with Apple .p12 certificate file to get file URL which can be used to save apple push settings.
</br>
Request: &lt;your-server-url&gt;/settings/&lt;your-appId&gt;/file/push;
Expand All @@ -104,7 +104,7 @@ xhttp.open("PUT", <your-server-url>/settings/<your-appId>/file/push, true);
xhttp.send(data);
```

##Retrieve App Settings
## Retrieve App Settings
Make a POST REST request to ClouBoost API to retrive your app settings
</br>
Request:&lt;your-server-url&gt;/settings/&lt;your-appId&gt;
Expand All @@ -128,5 +128,5 @@ xhttp.open("POST", <your-server-url>/settings/<your-appId>, true);
xhttp.send(data);
```

#Contribute
# Contribute
If you want to contribute to this repo. Please make sure you spell check everything and make sure you have tested the code with the live CloudBoost API before sending us the pull request.

0 comments on commit 7620f37

Please sign in to comment.