How can you deny limit Twitter access to only one page?
VPM Instructions
Specify the following rules in VPM:
Given profile name is myProfile123
<Proxy>
url.domain="twitter.com/users/show_for_profile.json?screen_name=myProfile123" Allow ; Rule 1- this allows the specific profile
condition=OtherTwitterProfiles Deny ; Rule 2 this denies all other twitter profiles
url.domain="twitter.com" Allow ; Rule 3 - This allows you to download the eeded scripts from the main twitter page. they are needed to make te profile work
request.header.Referer="twitter.com" Allow ; Rule4 - allows other back ends referred to by twitter.
define condition OtherTwitterProfiles
url.domain=twitter.com condition=twitterSub
end
define condition twitterSub
url.regex="users"
url.regex="login"
url.regex="search"
;url.regext=any other string that twitter might use in the future
end