Sha256: 176cd844b8ca08d8f80d5bc89b401796fcf47a105af60b0e1c91f071d0686103
Contents?: true
Size: 1.17 KB
Versions: 4
Compression:
Stored size: 1.17 KB
Contents
# frozen_string_literal: true module MediaWiktory::Wikipedia module Actions # Remove authentication data for the current user. # # Usage: # # ```ruby # api.removeauthenticationdata.request(value).perform # returns string with raw output # # or # api.removeauthenticationdata.request(value).response # returns output parsed and wrapped into Response object # ``` # # See {Base} for generic explanation of working with MediaWiki actions and # {MediaWiktory::Wikipedia::Response} for working with action responses. # # All action's parameters are documented as its public methods, see below. # class Removeauthenticationdata < MediaWiktory::Wikipedia::Actions::Post # Use this authentication request, by the id returned from action=query&meta=authmanagerinfo with amirequestsfor=remove. # # @param value [String] # @return [self] def request(value) merge(request: value.to_s) end # A "csrf" token retrieved from action=query&meta=tokens # # @param value [String] # @return [self] def token(value) merge(token: value.to_s) end end end end
Version data entries
4 entries across 4 versions & 1 rubygems