简体   繁体   中英

Decode Javascript Encoded Variables

How do I decode encoded javascript variables like:

_0xa2bax2
_0xa2bax3
_0xa2bax5

Edit

I decoded most of it but there are still portions I can't decode:

var _0xa2bax2 = 'DESCRIPTION';
FB['api'](
    '/me/feed',
    'post',
    { message: _0xa2bax2 },
    function (_0xa2bax3) {}
);

From the code sample you provided in your comment (and I edited into your question), those appear to be just arbitrary variable names in the code. Using the code sample from here , they are probably translated roughly into something like this:

  • _0xa2bax2 = message to post to the wall
  • _0xa2bax3 = response from the post - can be used to check for error message from posting or retrieve the new Post ID
  • _0xa2bax5 = no idea?? you don't have any examples...

See the FaceBook Developers API page for more information.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM