From 655e6650051a9c08675d15e05ac3b7d9be98e714 Mon Sep 17 00:00:00 2001
From: hank <hank.zhang@proficientcity.com>
Date: Wed, 18 Apr 2018 15:28:32 +0800
Subject: [PATCH] 添加V3.6.7

---
 frameworks/TwitterCore.framework/PrivateHeaders/TWTRAuthenticationConstants.h |   95 +++++++++++++++++++++++++----------------------
 1 files changed, 51 insertions(+), 44 deletions(-)

diff --git a/frameworks/TwitterCore.framework/PrivateHeaders/TWTRAuthenticationConstants.h b/frameworks/TwitterCore.framework/PrivateHeaders/TWTRAuthenticationConstants.h
index bf7c04a..2692473 100644
--- a/frameworks/TwitterCore.framework/PrivateHeaders/TWTRAuthenticationConstants.h
+++ b/frameworks/TwitterCore.framework/PrivateHeaders/TWTRAuthenticationConstants.h
@@ -1,61 +1,68 @@
-//
-//  TWTRAuthenticationConstants.h
-//  TWTRAuthentication
-//
-//  Created by Mustafa Furniturewala on 2/5/14.
-//  Copyright (c) 2014 Mustafa Furniturewala. All rights reserved.
-//
+/*
+ * Copyright (C) 2017 Twitter, Inc.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+/**
+ This header is private to the Twitter Core SDK and not exposed for public SDK consumption
+ */
 
 #import <Foundation/Foundation.h>
 
 #pragma mark Twitter API
-FOUNDATION_EXPORT NSString *const TWTRTwitterDomain;
+FOUNDATION_EXTERN NSString *const TWTRTwitterDomain;
 
 #pragma mark - Authentication
-FOUNDATION_EXPORT NSString *const TWTRAuthDirectoryLegacyName;
-FOUNDATION_EXPORT NSString *const TWTRAuthDirectoryName;
-FOUNDATION_EXPORT NSString *const TWTRSDKScheme;
-FOUNDATION_EXPORT NSString *const TWTRSDKRedirectHost;
+FOUNDATION_EXTERN NSString *const TWTRAuthDirectoryLegacyName;
+FOUNDATION_EXTERN NSString *const TWTRAuthDirectoryName;
+FOUNDATION_EXTERN NSString *const TWTRSDKScheme;
+FOUNDATION_EXTERN NSString *const TWTRSDKRedirectHost;
 
 #pragma mark - Paths
-FOUNDATION_EXPORT NSString *const TWTRTwitterRequestTokenPath;
-FOUNDATION_EXPORT NSString *const TWTRTwitterAuthenticatePath;
-FOUNDATION_EXPORT NSString *const TWTRTwitterAccessTokenPath;
-FOUNDATION_EXPORT NSString *const TWTRAppAuthTokenPath;
-FOUNDATION_EXPORT NSString *const TWTRGuestAuthTokenPath;
+FOUNDATION_EXTERN NSString *const TWTRTwitterRequestTokenPath;
+FOUNDATION_EXTERN NSString *const TWTRTwitterAuthorizePath;
+FOUNDATION_EXTERN NSString *const TWTRTwitterAccessTokenPath;
+FOUNDATION_EXTERN NSString *const TWTRAppAuthTokenPath;
+FOUNDATION_EXTERN NSString *const TWTRGuestAuthTokenPath;
 
 #pragma mark - OAuth strings
-FOUNDATION_EXPORT NSString *const TWTRAuthOAuthTokenKey;
-FOUNDATION_EXPORT NSString *const TWTRAuthOAuthSecretKey;
-FOUNDATION_EXPORT NSString *const TWTRAuthAppOAuthTokenKey;
-FOUNDATION_EXPORT NSString *const TWTRGuestAuthOAuthTokenKey;
-FOUNDATION_EXPORT NSString *const TWTRAuthAppOAuthUserIDKey;
-FOUNDATION_EXPORT NSString *const TWTRAuthAppOAuthScreenNameKey;
-FOUNDATION_EXPORT NSString *const TWTRAuthAppOAuthVerifierKey;
-FOUNDATION_EXPORT NSString *const TWTRAuthAppOAuthDeniedKey;
-FOUNDATION_EXPORT NSString *const TWTRAuthAppOAuthAppKey;
-FOUNDATION_EXPORT NSString *const TWTRAuthAppOAuthCallbackConfirmKey;
-FOUNDATION_EXPORT NSString *const TWTRAuthAppOAuthCallbackKey;
-FOUNDATION_EXPORT NSString *const TWTRAuthTokenTypeKey;
-FOUNDATION_EXPORT NSString *const TWTRAuthTokenKey;
-FOUNDATION_EXPORT NSString *const TWTRAuthSecretKey;
-FOUNDATION_EXPORT NSString *const TWTRAuthUsernameKey;
-FOUNDATION_EXPORT NSString *const TWTRAuthTokenSeparator;
+FOUNDATION_EXTERN NSString *const TWTRAuthOAuthTokenKey;
+FOUNDATION_EXTERN NSString *const TWTRAuthOAuthSecretKey;
+FOUNDATION_EXTERN NSString *const TWTRAuthAppOAuthTokenKey;
+FOUNDATION_EXTERN NSString *const TWTRGuestAuthOAuthTokenKey;
+FOUNDATION_EXTERN NSString *const TWTRAuthAppOAuthUserIDKey;
+FOUNDATION_EXTERN NSString *const TWTRAuthAppOAuthScreenNameKey;
+FOUNDATION_EXTERN NSString *const TWTRAuthAppOAuthVerifierKey;
+FOUNDATION_EXTERN NSString *const TWTRAuthAppOAuthDeniedKey;
+FOUNDATION_EXTERN NSString *const TWTRAuthAppOAuthAppKey;
+FOUNDATION_EXTERN NSString *const TWTRAuthAppOAuthCallbackConfirmKey;
+FOUNDATION_EXTERN NSString *const TWTRAuthAppOAuthCallbackKey;
+FOUNDATION_EXTERN NSString *const TWTRAuthTokenTypeKey;
+FOUNDATION_EXTERN NSString *const TWTRAuthTokenKey;
+FOUNDATION_EXTERN NSString *const TWTRAuthSecretKey;
+FOUNDATION_EXTERN NSString *const TWTRAuthUsernameKey;
+FOUNDATION_EXTERN NSString *const TWTRAuthTokenSeparator;
 
 #pragma mark - HTTP Headers
-FOUNDATION_EXPORT NSString *const TWTRAuthorizationHeaderField;
-FOUNDATION_EXPORT NSString *const TWTRGuestTokenHeaderField;
+FOUNDATION_EXTERN NSString *const TWTRAuthorizationHeaderField;
+FOUNDATION_EXTERN NSString *const TWTRGuestTokenHeaderField;
 
 #pragma mark - Resources
-FOUNDATION_EXPORT NSString *const TWTRLoginButtonImageLocation;
+FOUNDATION_EXTERN NSString *const TWTRLoginButtonImageLocation;
 
 #pragma mark - Errors
-FOUNDATION_EXPORT NSString *const TWTRMissingAccessTokenMsg;
+FOUNDATION_EXTERN NSString *const TWTRMissingAccessTokenMsg;
 
-typedef NS_ENUM(NSInteger, TWTRAuthType) {
-    TWTRAuthTypeApp = 1,
-
-    TWTRAuthTypeGuest = 2,
-
-    TWTRAuthTypeUser = 3
-};
+typedef NS_ENUM(NSInteger, TWTRAuthType) { TWTRAuthTypeApp = 1, TWTRAuthTypeGuest = 2, TWTRAuthTypeUser = 3 };

--
Gitblit v1.8.0