I have a string like this :
oauth_token=1%2F7VDUGD4tKIqSu4jX4DoeCRD1KbqqgTxFnFFliVgbSss&oauth_token_secret=Rk%2FwejMIg6t%2BFphvRd%2BZ5Wkc
How can I extract the two variables oauth_token
and oauth_token_secret
from the about string using PHP
NOTE: this is not coming from the URL( we can do that using $_GET
)
Thank YOU