By having ```rb FacebookAds.access_token = '[YOUR_ACCESS_TOKEN]' ``` we aren't able to manage multiple accounts on behalf of our clients because the `.access_token` set its value as a global state, at the class level. Ideal way would be instantiating FacebookAds with the access token, e.g ```rb client1 = FacebookAds.new(access_token: '[ACCESS_TOKEN1]') client2 = FacebookAds.new(access_token: '[ACCESS_TOKEN2]') ``` Is there a workaround with the current code? Or any suggestion on how to proceed? Thanks a lot.