xartigas pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=8377ea20a01c95b7bd9b8b2a61e202b4af598016
commit 8377ea20a01c95b7bd9b8b2a61e202b4af598016 Author: Felipe Magno de Almeida <[email protected]> Date: Fri Jul 26 14:59:17 2019 +0200 efl-js: Remove private keys for Twitter API from example Summary: For security concerns we removed the secret keys which could be used improperly by the wrong people. Reviewers: woohyun, cedric, lauromoura Reviewed By: lauromoura Subscribers: #reviewers, #committers Tags: #efl Differential Revision: https://phab.enlightenment.org/D9377 --- src/examples/elementary/twitter_example_01.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/examples/elementary/twitter_example_01.js b/src/examples/elementary/twitter_example_01.js index d0f5f71fcd..04edbdd3ae 100644 --- a/src/examples/elementary/twitter_example_01.js +++ b/src/examples/elementary/twitter_example_01.js @@ -13,10 +13,10 @@ Twitter = require('twitter'); user_acount = 'EnlightenmentKo' var twit = new Twitter({ - consumer_key: 'ZbSM93w5Sp2cyZ2SG0XuCvoHV', - consumer_secret: 'g8N7EEQLpdKPnAsS9hWuQV29FYjBkhH62jhZzXyYymDw87DKye', - access_token_key: '222611263-pPhKKjYh59uuNLP0b86sP7aAtLhdecjVQaEsCDCv', - access_token_secret: 'l7ccNKXTVv6cymfSD1gQH61tmfixkdna2QmOjPtpVxSHD' + consumer_key: '', // replace with consumer_key + consumer_secret: '', // replace with consumer_secret + access_token_key: '', // replace with access_token_key + access_token_secret: '' // replace with access_token_secret }); win = new efl.Efl.Ui.Win(null, "Efl JS Example", efl.Efl.Ui.Win.Type.BASIC, "hw"); --
