Close httplib2 connections.
start(productCode, websiteUrl, userLocale=None, websiteLocale=None, callbackUrl=None)
Create an association session for initiating an association with an AdSense user.
Verify an association session after the association callback returns from AdSense signup.
close()
Close httplib2 connections.
start(productCode, websiteUrl, userLocale=None, websiteLocale=None, callbackUrl=None)
Create an association session for initiating an association with an AdSense user. Args: productCode: string, Products to associate with the user. (required) (repeated) Allowed values AFC - AdSense For Content AFG - AdSense For Games AFMC - AdSense For Mobile Content - deprecated AFS - AdSense For Search - deprecated AFV - AdSense For Video websiteUrl: string, The URL of the user's hosted website. (required) userLocale: string, The preferred locale of the user. websiteLocale: string, The locale of the user's hosted website. callbackUrl: string, The URL to redirect the user to once association is completed. It receives a token parameter that can then be used to retrieve the associated account. Returns: An object of the form: { "productCodes": [ # The products to associate with the user. Options: AFC, AFG, AFV, AFS (deprecated), AFMC (deprecated) "A String", ], "kind": "adsensehost#associationSession", # Kind of resource this is, in this case adsensehost#associationSession. "websiteLocale": "A String", # The locale of the user's hosted website. "accountId": "A String", # Hosted account id of the associated publisher after association. Present if status is ACCEPTED. "websiteUrl": "A String", # The URL of the user's hosted website. "status": "A String", # Status of the completed association, available once the association callback token has been verified. One of ACCEPTED, REJECTED, or ERROR. "id": "A String", # Unique identifier of this association session. "userLocale": "A String", # The preferred locale of the user themselves when going through the AdSense association flow. "redirectUrl": "A String", # Redirect URL of this association session. Used to redirect users into the AdSense association flow. }
verify(token)
Verify an association session after the association callback returns from AdSense signup. Args: token: string, The token returned to the association callback URL. (required) Returns: An object of the form: { "productCodes": [ # The products to associate with the user. Options: AFC, AFG, AFV, AFS (deprecated), AFMC (deprecated) "A String", ], "kind": "adsensehost#associationSession", # Kind of resource this is, in this case adsensehost#associationSession. "websiteLocale": "A String", # The locale of the user's hosted website. "accountId": "A String", # Hosted account id of the associated publisher after association. Present if status is ACCEPTED. "websiteUrl": "A String", # The URL of the user's hosted website. "status": "A String", # Status of the completed association, available once the association callback token has been verified. One of ACCEPTED, REJECTED, or ERROR. "id": "A String", # Unique identifier of this association session. "userLocale": "A String", # The preferred locale of the user themselves when going through the AdSense association flow. "redirectUrl": "A String", # Redirect URL of this association session. Used to redirect users into the AdSense association flow. }