Replace client_id with app_client_id
#441
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Follow up of #425 and #426.
After #426,
configure.pyno longer generates.gh-api-example.confwithclient_idshell variable definition.There are shell scripts that refer
$client_idshell variable. These shell scripts should refer$app_client_idinstead of$client_id.In this pull request, I replaced
client_idwithapp_client_idin the shell scripts.I used the following shell command to list the affected files.
This regexp matches
client_idbut does not match_client_id, so it should list all lines that haven't updated toapp_client_idyet.List of files before this pull request (at bdc2f68)
List of files after this pull request
While there are still many files that matches with
client_id, they are fine to leave as is becauseclient_idmatches:# POST /applications/{client_id}/token)client_id=${x_client_id})'{ client_id: $app_client_id, scope: $scope }' > ${json_file})